Determines if a value is an array.
isArray([1, 2, 3]); // => trueisArray('abc'); // => false Copy
isArray([1, 2, 3]); // => trueisArray('abc'); // => false
The value to check.
A boolean indicating whether the value is an array.
Determines if a value is an array.
Example