> 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/prototypevalue.md).

# \_.prototype.value

**语法：**

```javascript
_.prototype.value()
```

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

**描述：**

执行链式队列并提取解链后的值。

**开始版本：**&#x30;.1.0

**别名：***\\*.prototype.toJSON, \_.prototype.valueOf\_

**返回值：**

* `(*)`: 返回解链后的值。

**例子：**

```javascript
_([1, 2, 3]).value();
// => [1, 2, 3]
```
