Home Answers Viewqa JavaScriptQuestions How to shift and unshift using JavaScript?

 
 


samar
How to shift and unshift using JavaScript?
1 Answer(s)      2 years and 7 months ago
Posted in : JavaScript Questions

How to shift and unshift using JavaScript?

View Answers

November 10, 2010 at 5:48 PM


As the pop() method removes and returns the last element, the shift() method removes and returns the first element of an array object. Since the first element is removed and returned this also affects the length of the array.

<script type="text/javascript">
         var rose =["Welcome","to","roseindia","Technologies"];
         document.write(rose.shift() + "<br />");
         document.write(rose.shift() + "<br />");
         document.write(rose);
      </script>









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.