Append Element to Array in JavaScript

First, create an array in JavaScript. For example, we are creating an array games with two elements “chess” and “football”.

Now append two more elements “tennis” an “pool” in games array using push() method. This method returns the number of element in array after adding new elements.

Finally you can print the elements of array using console.log() function. You can also check the number of elements by printing total variable value.

How to Remove Array Element by Value in JavaScript

Working Example:

Below is the working example of initializing an Array in JavaScript. After that append some more elements in existing array. At the end print the array element to console.

Added above content in a html file and check access page in the browser. Now check the console of the browser, You will find the results as below screenshot.

How to Append Element to Array in JavaScript   TecAdmin - 56