> For the complete documentation index, see [llms.txt](https://lodash.shujuwajue.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lodash.shujuwajue.com/seq/prototypeat.md).

# \_.prototype.at

**语法：**

```javascript
_.prototype.at([paths])
```

**源代码链接：**[source](https://github.com/lodash/lodash/blob/4.17.10/lodash.js#L8814)

**描述：**

这个方法是[`_.at`](https://lodash.com/docs/4.17.10#at)的包装版本 。

**开始版本：**&#x31;.0.0

**参数：**

* `[paths] (...(string|string[]))`: 要选择元素的属性路径（愚人码头注： 单独指定或者数组）。

**返回值：**

* `(Object)`: 返回 lodash 的包装实例。

**例子：**

```javascript
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };

_(object).at(['a[0].b.c', 'a[1]']).value();
// => [3, 4]
```
