Home > shift()

JavaScript: What is the difference between shift() and unshift() array methods?

Definition: shift(): this method is use to remove first element of an array and returns new array. unshift(): this array method is used to add one or more arrays in existing array list and returns new array. usages of shift(): [crayon-69a8a2c66d6aa336141912/] usages of unshift(): [crayon-69a8a2c66d6be128823775/]  

This Article is TAGGED in , , , . Read more

Array functions in javascript

Javascript array functions 1. toString() - convert array to string [crayon-69a8a2c66d941881719584/] 2. pop() - remove/delete last element from an array [crayon-69a8a2c66d947355026381/] 3. push() - add/insert element at the top [crayon-69a8a2c66d94a140867723/] 4. shift() - remove/delete first element from an array [crayon-69a8a2c66d94d522884677/] 5. unshift() - add/insert element at first position [crayon-69a8a2c66d94f369693665/] 6. concat() - merged(concat) existing array and create new array [crayon-69a8a2c66d952036383130/] 7. slice() -

This Article is TAGGED in , , , , , , , . Read more