It will determine whether the provided value is an array or not.
value
1.0.0
isArray([1]);// => true Copy
isArray([1]);// => true
isArray(3);// => false Copy
isArray(3);// => false
It will determine whether the provided
value
is an array or not.