UNPKG

wat

Version:

Community-controlled cheat sheets for every coder.

12 lines (9 loc) 282 B
## Array.isArray(object) Determines whether an object is an array. ```js Array.isArray([]); // true Array.isArray(new Array()); // true Array.isArray([1, 2, 3]); // true Array.isArray("an array"); // false Array.isArray({}); // false ```