chain
最后更新于:2022-04-02 00:06:25
## chain
+ [link](./chain "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L7163 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.chain "See the npm package.")
```
_.chain(value)
```
创建一个经 `lodash` 包装的对象以启用显式链模式,要解除链必须使用 `_#value` 方法。
### 参数
1. value (\*)
要包装的值
### 返回值 (Object)
返回 `lodash` 包装的实例
### 示例
```
var users = [
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 40 },
{ 'user': 'pebbles', 'age': 1 }
];
var youngest = _
.chain(users)
.sortBy('age')
.map(function(o) {
return o.user + ' is ' + o.age;
})
.head()
.value();
// => 'pebbles is 1'
```
';