forEach each
最后更新于:2022-04-01 23:59:54
## forEach each
+ [link](./forEach "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L7702 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.foreach "See the npm package.")
```
_.forEach(collection, [iteratee=_.identity])
```
调用 iteratee 遍历集合中的元素, iteratee 会传入3个参数:(value, index|key, collection)。 如果显式的返回 false ,iteratee 会提前退出。
**注意:** 与其他集合方法一样,对象的 length 属性也会被遍历,避免这种情况,可以用 _.forIn 或者_ .forOwn 代替。
### 参数
1. collection (Array|Object)
需要遍历的集合
2. [iteratee=_.identity] (Function)
这个函数会处理每一个元素
### 返回值 (Array|Object)
返回集合
### 示例
```
_([1, 2]).forEach(function(value) {
console.log(value);
});
// => 输出 `1` 和 `2`
_.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
console.log(key);
});
// => 输出 'a' 和 'b' (不保证遍历的顺序)
```
';