UNPKG

wat

Version:

Community-controlled cheat sheets for every coder.

12 lines (9 loc) 252 B
## .length Gets or sets the length of the array. This is a number one higher than the highest element defined in an array. ```js var arr = []; arr[0] = "Foo"; arr[6] = "Bar"; var length = arr.length; // 7 [0, 1, 2, 3].length; // 4 ```