Arrays

Arrays in javaScript

An array is a data structure that can store a collection of values of any type, including numbers, strings, objects, and even other arrays. Arrays are zero-indexed, which means that the first element in the array has an index of 0, the second element has an index of 1, and so on.

Here is an example of how to declare an array in JavaScript:

let myArray = [ ]; // an empty array

You can also declare an array with some initial values:

let myArray = [ 1, 2, 3, “four”, true ] ; // an

 array with 5 elements of different types

You can access elements of an array using their index:

console.log(myArray[0]); // prints 1

console.log(myArray[3]); // prints “four”

You can also modify elements of an array by assigning new values to their index:

myArray[0] = ; // changes the first

 element to 5

console.log(myArray) ; // prints [5, 2, 3,

 “four”, true]  

Arrays have many useful methods that allow you to manipulate their contents, such as push(), pop(), shift(), unshift(), slice(), and splice(). You can read more about these methods in the JavaScript documentation. Click here to learn more