prototype.at
最后更新于:2022-04-02 00:06:27
## prototype.at
+ [link](./prototype-at "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L7238 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.prototype.at "See the npm package.")
```
_.prototype.at([paths])
```
这个方法是 `_.at` 的包装版本
### 参数
1. [paths] (...(string|string[])
要选择元素的属性路径, 单独指定或者数组
### 返回值 (Object)
返回 `lodash` 的包装实例
### 示例
```
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };
_(object).at(['a[0].b.c', 'a[1]']).value();
// => [3, 4]
_(['a', 'b', 'c']).at(0, 2).value();
// => ['a', 'c']
```
';