DEV Community

Cover image for push() Array Method | JavaScript Array Method
Somanath Goudar
Somanath Goudar

Posted on • Updated on

push() Array Method | JavaScript Array Method

You can Prefer to Read or you can Watch on YouTube:

=> The push() method adds a new element to an array (at the end)
=> The push() method returns the new array length

Example:

// Consider an array of Fruits
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");   //  Adds a new element ("Kiwi") to fruits
Enter fullscreen mode Exit fullscreen mode

Example:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
var x = fruits.push("Kiwi");   //  the value of x is 5
Enter fullscreen mode Exit fullscreen mode

Top comments (0)