propertyOf
最后更新于:2022-04-02 00:08:51
## propertyOf
+ [link](./propertyOf "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L13664 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.propertyof "See the npm package.")
```
_.propertyOf(object)
```
反向版 `_.property`。 这个方法创建的函数返回给定 path 在对象上的值。
### 参数
1. object (Object)
要检索的对象
### 返回值 (Function)
返回新的函数
### 示例
```
var array = [0, 1, 2],
object = { 'a': array, 'b': array, 'c': array };
_.map(['a[2]', 'c[0]'], _.propertyOf(object));
// => [2, 0]
_.map([['a', '2'], ['c', '0']], _.propertyOf(object));
// => [2, 0]
```
';