js array type of code example
Example 1: typeof array
const array = [ 'this', 'is', 'an', 'array' ];
console.log(typeof array); //object
Example 2: js is of type array
Array.isArray([1, 2, 3]); // true
Array.isArray({foo: 123}); // false
Array.isArray('foobar'); // false
Array.isArray(undefined); // false