forInRight
最后更新于:2022-04-02 00:04:54
## forInRight
+ [link](./forInRight "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L11036 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.forinright "See the npm package.")
```
_.forInRight(object, [iteratee=_.identity])
```
这个方法类似 `_.forIn`。 除了它是反方向开始遍历的。
### 参数
1. object (Object)
要遍历的对象
2. [iteratee=_.identity] (Function)
这个函数会处理每一个元素
### 返回值 (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'
```
';