服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

这个方法就像_.forEach,不同的是它遍历collection 从右到左的元素。

初始

2.0.0

别名

_.eachRight

参数
  1. collection (Array | Object):迭代的集合。
  2. [iteratee=_.identity] (Function):每次迭代调用的函数。
返回

(*): 返回collection.

_.forEachRight([1, 2], function(value) {
  console.log(value);
});
// => Logs `2` then `1`.