Lodash - forEachRight 方法



语法

_.forEachRight(collection, [iteratee=_.identity])

此方法类似于 _.forEach,只是它从右到左遍历集合中的元素。

参数

  • collection (数组或对象) − 要遍历的集合。

  • [iteratee=_.identity] (函数) − 每次迭代调用的函数。

输出

  • (*) − 返回集合。

示例

var _ = require('lodash');
var list = [1 , 2, 3, 4, 5];
 
_.forEachRight(list, function(value) {
   console.log(value);
});

tester.js 中保存上述程序。运行以下命令来执行此程序。

命令

\>node tester.js

输出

5
4
3
2
1
lodash_collection.htm
广告