Determines whether the passed value is an Array.
The isArray() function determines whether the passed value is an Array.
Kind: Exported member
Returns: boolean
- true
if the object is an Array; otherwise, false
.
Param | Type | Description |
---|---|---|
obj | * |
The object to be checked.. |
Example
import isArray from 'is-array-x';
console.log(isArray([])); // true
console.log(isArray({})); // false