服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

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

版本

2.0.0

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

(对象):返回object

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