

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Write the importance of shift() method in javascript array?
Shift()
This method is used to remove the element from an array.Moreover it is different from pop() because shift() method removes the element at the starting of the array.
Example
<html> <body> <p id="shift"></p> <script> var a = [1,2,3,4,5]; var b = ["apple","mango","banana","guava","strawberry"] a.shift(); b.shift(); document.write(a); document.getElementById("shift").innerHTML = b; </script> </body> </html>
Output
mango,banana,guava,strawberry 2,3,4,5
- Related Questions & Answers
- JavaScript Array shift()
- Array shift() in JavaScript
- What is the importance of Math.trunc() method in JavaScript?
- What is the importance of _isEqual() method in JavaScript?
- What is the importance of _.union() method in JavaScript?
- What is the importance of _without() method in JavaScript?
- What is the importance of str.padStart() method in JavaScript?
- Explain the importance of Array.filter() method in JavaScript with example?
- Shift certain array elements to front of array - JavaScript
- What is importance of startsWith() method in JavaScript?
- Write the use of unshift() method in javascript?
- Write the use of Array.reduceRight() method in JavaScript?
- Write the usage of split() method in javascript?
- Importance of the parseBoolean() method in Java?
- Importance of the getCause() method in Java?
Advertisements