Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 195 Bytes

File metadata and controls

13 lines (11 loc) · 195 Bytes

Arrays, like strings, have a length property.

You can check this by starting a node console in your terminal.

$ node
> var arr = [1, 2, 3];
undefined
> arr
[1, 2, 3]
> arr.length
3