fjs.isArray
fjs.isArray returns true if the argument is an array, otherwise false.
Usage
fjs.isArray(arg);Example
fjs.isArray([5, 4, 3, 2, 1]); // => truefjs.isArray({ "a": "b" }); // => falsefjs.isArray returns true if the argument is an array, otherwise false.
fjs.isArray(arg);fjs.isArray([5, 4, 3, 2, 1]); // => truefjs.isArray({ "a": "b" }); // => false