How to Add an Element to JavaScript Array?

There are 3 methods to add elements to the JS array easily. Even though there are more than 3 methods to append items to the JavaScript array, I suggest you only these methods for completing the tasks more efficiently.

1. Using Push Method ( For Adding Single Items )

Every JavaScript array has built-in methods for various array operations. We can use the array push() method to add elements to an existing array. We can add as many items as we want at once by using this method.

Example 1

Here, I added an item to the existing array.

Example 2

I added two items at once to the existing JS array.

Example 3

This method is useful when you want to add an array to the existing array. It updates the existing array with items of the second array. The … operator is used to add an array.

2. Using Concat() Method ( for Creating a New Array )

If you don’t wish to change the values of an existing array, you can use the concat() method to add items to an array and create a new array from those values. The method will create a new array and add items.

Example 1: Adding Items

Example 2: Adding Two Arrays

3. Using … Operator to Combine Multiple Arrays

This last method is very helpful to combine multiple arrays and create a new array from them.

Example

Conclusion

All three methods are very helpful for adding multiple values to an existing array. You may use any one of the methods you wish without any doubt.