check what type of object contained in array javascript code example
Example: js check if array
Array.isArray([1, 2, 3]); // true
Array.isArray('asdf'); // false
Array.isArray([1, 2, 3]); // true
Array.isArray('asdf'); // false