Lodash _.forInRight
2021-09-24 10:39 更新
_.forInRight(object, [iteratee=_.identity])
这个方法类似_.forIn。 除了它是反方向开始遍历object的。
添加版本
2.0.0
参数
- object (Object): 要遍历的对象。
- [iteratee=_.identity] (Function): 每次迭代时调用的函数。
返回
(Object): 返回 object。
例子
function Foo() { this.a = 1; this.b = 2;} Foo.prototype.c = 3;
_.forInRight(new Foo, function(value, key) { console.log(key);});
// => 输出 'c', 'b', 然后 'a', `_.forIn` 会输出 'a', 'b', 然后 'c'。
以上内容是否对您有帮助:
更多建议: