Guest User

Untitled

a guest
Jan 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //initializing an empty array
  2. let emptyArray = [];
  3.  
  4. //initializing array with items
  5. let fullArray = ["number", 5, "wow"];
  6.  
  7. //Lenghth
  8. console.log(fullArray.length); // 3 ( how many elements are in the array)
Add Comment
Please, Sign In to add comment