Answers

Question and Answer:

  Home  Expert JavaScript Developer

⟩ What is Push() method in JavaScript?

► The push() method is used to append one or more elements to the end of an array.

► For example :

var fruits = [ "apple" ];

fruits.push( "banana" );

fruits.push( "mango", "strawberry" );

console.log(fruits);

► We get the following console output :

["apple ", "banana ", "mango ", "strawberry "]

► Using Push() method we can also append multiple elements by passing multiple arguments.

► The elements will be appended in the order of they are inserted i.e. left to right.

 175 views

More Questions for you: