Expert Developer JavaScript Question:

Explain the unshift() method in JavaScript?

Tweet Share WhatsApp

Answer:

This method is functional at the starting of the array, unlike the push(). It adds the desired number of elements to the top of an array. For example -


var name = [ "john" ];
name.unshift( "charlie" );
name.unshift( "joseph", "Jane" );

console.log(name);

The output is shown below:

[" Jane ", " joseph ", " charlie ", " john "]

Download Expert JavaScript Developer PDF Read All 150 Expert JavaScript Developer Questions
Previous QuestionNext Question
What are the various functional components in JavaScript?What are the decodeURI() and encodeURI()?