The easiest way to add a new element to an array is using the push method:
varfruits=["Banana","Orange","Apple","Mango"];fruits.push("Lemon");// adds a new element (Lemon) to fruitsfruits// ["Banana", "Orange", "Apple", "Mango", "Lemon"]
unshift() method adds a new element to an array at the beginning
New element can also be added to an array using the length property:
fruits[fruits.length]="Lemon";// adds a new element (Lemon) to fruits
Adding elements with high indexes can create undefined “holes” in an array.
The pop() method removes the last element from an array:
varfruits=["Banana","Orange","Apple","Mango"];fruits.pop();// Removes the last element ("Mango") from fruitsfruits// ["Banana", "Orange", "Apple"]
shift() method removes the first array element.
The Difference Between Arrays and Objects
In JavaScript, arrays use numbered indexes.
In JavaScript, objects use named indexes.
Arrays are a special kind of objects, with numbered indexes.
The JavaScript method toString() converts an array to a string of (comma separated) array values.
The join() method also joins all array elements into a string: