An array is a special variable, which can hold more than one value, at a time.The following points should always be remembered when using arrays in JavaScript:
The array is a special type of variable.
Values are stored into an array by using the array name and by stating the location in the array you wish to store the value in brackets. Example: myArray[2] = "Hello World";
Values in an array are accessed by the array name and location of the value. Example: myArray[2];
JavaScript has built-in functions for arrays, so check out these built-in array functions before writing the code yourself!
JavascriptArrays
[Suggest , Read ]
An array is a special variable, which can hold more than one value, at a time.The following points should always be remembered
Arrays by newboston
An array is a special variable, which can hold more than one value, at a time.The following points should always be remembered when using