check typeof variable javascript array code example
Example 1: javascript typeof array
Array.isArray(arr)
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