In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article focuses on "how to delete the first element of an array by javascript". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how javascript deletes the first element of an array.
Javascript deletes the first element of the array: 1, use the shift () function, syntax "arr.shift ();"; 2, use the delete operator, syntax "delete arr [0];"; 3, use the splice () function, syntax "arr.splice (0Jue 1)".
The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.
The method of deleting the first element of an array by javascript
Method 1. Use the shift () function
The shift () function removes the element at the beginning of the array, removes the first element of the array, and returns the value of the first element, and then moves all remaining elements forward one bit to fill the gap in the array header.
Var a = [1, console.log 2, 3, 4, 5, 6, 7, 8]; / / define the array a.shift (); console.log (a)
Method 2: use the delete operator
When you delete an array element based on an array subscript using the delete operator, the array length does not change, but the deleted element becomes an empty element.
Var arr=new Array ("banana", "apple", "pear", "orange", "orange", "durian"); console.log (arr); delete arr [0]; / / delete the element with the subscript 0 (first element) console.log (arr)
Method 3: use the splice () method
Var arr=new Array ("banana", "apple", "pear", "orange", "orange", "durian"); console.log (arr); arr.splice (0Magne1); console.log (arr)
At this point, I believe you have a deeper understanding of "how to delete the first element of the array by javascript". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.