Arrays in javascript

kudvenkat
Youtube
Related Topic
:- Javascript Web Development

 Arrays are collections and ZERO indexed. This means the first element is at index ZERO and the last element is at index arrayObject.length - 1. length property of the array object returns the size of the array.

Comments