fun/array/is-array
Returns true if the given input is an array; false otherwise. This test is strict, meaning it will return false for array-like objects.
Syntax
result = isArray(obj)
Parameters
objThe object to test
Examples
isArray([]) // true
isArray({ length: 0 }) // false