_.chunk(分块)
_.compact(过滤假值)
_.concat(连接)
_.difference(过滤值)
_.differenceBy(过滤值)
_.differenceWith(过滤值)
_.drop(开头丢掉n个元素)
_.dropRight(结尾丢掉n个元素)
_.dropRightWhile(结尾丢失元素)
_.dropWhile(开头丢掉元素)
_.fill(填充数组值)
_.findIndex(查找元素索引值)
_.findLastIndex(查找元素的索引值)
_.first -> head(取数组第一个元素)
_.flatten(减少一层嵌套)
_.flattenDeep(递归为一维数组)
_.flattenDepth(减少depth层嵌套)
_.fromPairs(返回键值对对象)
_.indexOf(获取元素的索引值)
_.initial(去除最后一个元素)
_.intersection(数组交集)
_.intersectionBy(数组交集)
_.intersectionWith(数组交集)
_.join(转字符串,类php-implode)
_.last(获取最后一个元素)
_.lastIndexOf(获取元素的索引值)
_.nth(获取元素的值)
_.pull(删除数组中元素)
_.pullAll(删除数组中元素)
_.pullAllBy(删除数组中的元素)
_.pullAllWith(删除数组中的元素)
_.pullAt(删除数组中的元素)
_.remove(删除数组中的元素)
_.reverse(元素位置反转)
_.slice(数组截取)
_.sortedIndex(获取索引值)
_.sortedIndexBy(获取索引值)
_.sortedIndexOf(获取索引值)
_.sortedLastIndex(获取索引值)
_.sortedLastIndexBy(获取索引值)
_.sortedLastIndexOf(获取索引值)
_.sortedUniq(数组去重)
_.sortedUniqBy(数组去重)
_.tail(除最后元素的数组)
_.take(数组截取)
_.takeRight(数组截取)
_.takeRightWhile(数组截取)
_.takeWhile(数组截取)
_.union(数组合并)
_.unionBy(数组合并)
_.unionWith(数组合并)
_.uniq(数组去重)
_.uniqBy(数组去重)
_.uniqWith(数组去重)
_.unzip(数组重组)
_.unzipWith(数组重组)
_.without(过滤元素值)
_.xor(数组取差集)
_.xorBy(数组取差集)
_.xorWith(数组取差集)
_.zip(数组重组)
_.zipObject(返回键值对新数组)
_.zipObjectDeep(返回键值对新数组)
_.zipWith(数组重组)
Last updated 5 years ago