// Check if something is an Array // just like you do with "typeof" Array.isArray([1, 2, 3]); // true Array.isArray('asdf'); // false