Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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