JavaScript Array unshift() methodThe JavaScript array unshift() method adds one or more elements in the beginning of the given array and returns the updated array. This method changes the length of the original array. SyntaxThe unshift() method is represented by the following syntax: Parameterelement1,element2,....,elementn - The elements to be added. ReturnThe original array with added elements. JavaScript Array unshift() method exampleLet's see some examples of unshift() method. Example 1Here, we will add an element in the given array. Test it NowOutput: JQuery,AngularJS,Node.js Example 2Let's see an example to add more than one elements in the given array. Test it NowOutput: Length before invoking unshift(): 2 Length after invoking unshift(): 4 Updated array: JQuery,Bootstrap,AngularJS,Node.js Next TopicJavaScript Array |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India