Lodash - forInRight 方法



语法

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

此方法类似于 _.forIn,不同之处在于它按相反的顺序迭代对象中的属性。

参数

  • object (Object) − 要迭代的对象。

  • [iteratee=_.identity] (Function) − 每进行一次迭代都会调用的函数。

 输出

  • (Object) − 返回对象。

示例

var _ = require('lodash');
 
function Foo() {
   this.a = 1;
   this.b = 2;
}
Foo.prototype.c = 3;
    
_.forInRight(new Foo, function(value, key) {
   console.log(key);
});

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

命令

\>node tester.js

 输出

c
b
a
lodash_object.htm
广告