isObject
最后更新于:2022-04-02 00:02:55
## isObject
+ [link](./isObject "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L9922 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.isobject "See the npm package.")
```
_.isObject(value)
```
检查 `value` 是否是 `Object` 的 [language type](https://es5.github.io/#x8)。 (例如: arrays, functions, objects, regexes, `new Number(0)`, 以及 `new String('')`)
### 参数
1. value (\*)
要检查的值
### 返回值 (boolean)
如果是对象返回 `true`,否则返回 `false`
### 示例
```
_.isObject({});
// => true
_.isObject([1, 2, 3]);
// => true
_.isObject(_.noop);
// => true
_.isObject(null);
// => false
```
';