Lodash - forEach 方法



语法

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

遍历 collection 的元素并为每个元素调用 iteratee。iteratee 使用三个参数调用:(value, index|key, collection)。iteratee 函数可通过显式返回 false 来提前退出遍历。

参数

  • collection (Array|Object) - 要遍历的集合。

  • [iteratee=_.identity] (Function) - 每进行一次遍历调用的函数。

输出

  • (*) - 返回 collection。

示例

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

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

命令

\>node tester.js

输出

1
2
3
4
5
lodash_collection.htm
广告