prototype.chain
最后更新于:2022-04-02 00:06:29
## prototype.chain
+ [link](./prototype-chain "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L7286 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.prototype.chain "See the npm package.")
```
_.prototype.chain()
```
开启包装对象的显式链。
### 返回值 (Object)
返回 `lodash` 的包装实例
### 示例
```
var users = [
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 40 }
];
// 不启用显式链
_(users).head();
// => { 'user': 'barney', 'age': 36 }
// 启用显式链
_(users)
.chain()
.head()
.pick('user')
.value();
// => { 'user': 'barney' }
```
';