_.reduceRight(collection, [iteratee=_.identity], [accumulator])
这个方法类似_.reduce
,除了它是从右到左遍历collection
(集合)中的元素的。
const_=require('lodash'); vararr=_.reduceRight([[1, 2], [3, 3]], function (flattened, other) { returnflattened.concat(other); }, []); console.log(arr)