remove first element from array js – The shift() method changes the length of the array. it is removes the first item of an array.
remove first element from array js
shift() The shift() method removes the first element from an array and returns that removed element.
Example 1: Remove First Element from Array
remove_first_element_from_array.html
<!DOCTYPE html> <html> <head> <title>How to Remove First Element from Jquery Array? - www.pakainfo.com</title> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> </head> <body> <script type="text/javascript"> var bloggerlist = [ "pakainfo.com", "infinityknow.com", "google.com", "w3school.com" ]; bloggerlist.shift(); console.log(bloggerlist); </script> </body> </html>
Result
["infinityknow.com", "google.com", "w3school.com"]
don’t miss : Jquery Remove Element From Array
Example 2: Remove Last Element from Jquery Array
remove_last_element_from_jquery_array.html
<!DOCTYPE html> <html> <head> <title>How to Remove Last Element in Jquery Array? - pakainfo.com</title> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> </head> <body> <script type="text/javascript"> var bloggerlist = [ "pakainfo.com", "infinityknow.com", "google.com", "w3school.com" ]; bloggerlist.pop(); console.log(bloggerlist); </script> </body> </html>
Result
["pakainfo.com", "infinityknow.com", "google.com"]
I hope you get an idea about remove first element from array js.
I would like to have feedback on my infinityknow.com.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.