服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.forInRight(object, iteratee=_.identity)

这个方法就像_.forIn是它object以相反的顺序迭代属性 。

版本

2.0.0

参数
  1. object (Object):迭代的对象。
  2. [iteratee=_.identity] (Function):每次迭代调用的函数。
返回

(Object): Returns object.

function Foo() {
  this.a = 1;
  this.b = 2;
}
 
Foo.prototype.c = 3;
 
_.forInRight(new Foo, function(value, key) {
  console.log(key);
});
// => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.