Tag: arrays in javascript with examples

  • Arrays in javascript

    Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2014/12/arrays-in-javascript.html 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…