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

# \_.isArguments（是否是arguments对象）

**语法：**

```javascript
_.isArguments(value)
```

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

**npm包链接：**[npm package](https://www.npmjs.com/package/lodash.isarguments)

**描述：**

检查`value`是否是一个类`arguments`对象。

> 参考：[温故而知新: JavaScript arguments 对象详解](https://blog.csdn.net/cc18868876837/article/details/53392592)

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

**参数：**

* `value (*)`: 要检查的值。

**返回值：**

* `(boolean)`: 如果value是一个 arguments 对象 返回 true，否则返回 false。

**例子：**

```javascript
_.isArguments(function() { return arguments; }());
// => true

_.isArguments([1, 2, 3]);
// => false
```
