Returns true if value is an array. Typed wrapper around Array.isArray.
true
value
Array.isArray
The value to check.
isArray([1, 2, 3]) // => trueisArray("hello") // => false Copy
isArray([1, 2, 3]) // => trueisArray("hello") // => false
Returns
trueifvalueis an array. Typed wrapper aroundArray.isArray.