In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
Most people do not understand the knowledge points of this article "es6 array how to remove the prescribed value", so the editor summarizes the following contents, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "es6 array how to remove the prescribed value" article.
Remove the method: 1, use the "arr.splice (arr.indexOf (" specified value "), 1)" statement, use indexOf () to find the location of the specified value, and then use splice () to delete the element according to the location; 2, use the "delete arr [arr.indexOf (" value ")] statement.
The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.
The es6 array removes the specified value
Method 1: using indexOf () and splice () methods
The idea of realization is:
Use indexOf () to find the location of the specified value
Delete the element based on location using splice ()
Implementation code:
Var arr = ["Banana", "Orange", "Apple", "Mango"]; console.log (arr); var a = arr.indexOf ("Apple"); arr.splice (aMagin1); console.log (arr)
Method 2: using the indexOf () method and the delete keyword
The idea of realization is:
Use indexOf () to find the location of the specified value
Delete the element by location using the delete keyword
Delete arr [index]
Implementation code:
Var arr = ["Banana", "Orange", "Apple", "Mango"]; console.log (arr); var index = arr.indexOf ("Orange"); delete arr [index]; console.log (arr)
Description: after deleting an element using delete, the subscript location element will be displayed as undefined, that is, an empty element
The above is the content of this article on "how to remove the specified value from the es6 array". I believe we all have some understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.
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.