Javascript Array Push() Method

Javascript Array Push

When we use the pop method, we are removing the last element from the array, and when we are using the push method, we are pushing some elements to the end of the array. So, a new element is added to the array, at the end, and the length of the array changes. This push method is going to return the new length of the array.

This method returns the new length of the array.

You can refer to the below code to understand the push property –

As you can see in the above program, we have an array, and then we are trying to push some value (a string) to the array, so the new value would be pushed to the end, and the new length of the array is returned. Let’s have a look at the output now →


As you can see, we could push the data ‘something’, onto the end of the array. The push method returns the new length of the array. You can try using the method for practice, so you can get familiar with it, and we can use this method as and when required.