Now our array scrips has 4 elements inside it and we can print or access them by using their index number. Note that index number starts from 0.
document.write(scripts[2]);// JavaScript
We also can create an array like this
var no_array = new Array(21, 22, 23, 24, 25); // Total 5 elements
var my_array=['4th']; // array with single element
var my_array=['Alex','Ron','Jim']; // New array
document.write(my_array[1]); // Output Ron
If we are processing a form then elements of the form can be managed as part of an array. We will learn some different points on use of arrays and before that we will learn some basics of JavaScript array.