In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 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 "filter is not the method of es6", so the editor summarizes the following, 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 "filter is not the method of es6" article.
Filter is the method of es6. Filter () is an array method added by es6 to filter array elements; this method passes array elements into a callback function to determine whether the element meets the specified condition, and returns with the syntax "arr.filter (callback function, thisValue)" if it does.
The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.
Filter () is a new array method added by es6 to filter array elements and return elements in the array that meet the specified criteria.
The filter () method passes the array element into a callback function, which determines whether the element meets the specified condition, and returns if it does.
Syntax:
Arr.filter (callback function, thisValue)
Callback function: this function is executed by every element in the array to specify conditions and process elements
ThisValue: optional. Object is used as the callback for this execution, passed to the function and used as the value of "this". If thisValue is omitted, the value of "this" is "undefined"
Format of the callback function:
Function callbackfn (Value,index,array)
Up to three parameters are acceptable:
Value: the value of the current array element, which cannot be omitted.
Index: the numeric index of the current array elements.
Array: the array object to which the current element belongs.
Return value: is a new array that contains a callback function that returns true for it. If the callback function returns false for all elements of array, the length of the new array is 0.
Example 1: returns all even numbers
Var a = [2 return false; 3 4 var 5 6 7 7 8]; function f (value) {if (value% 2 = = 0) {return true;} else {return false;}} var b = a.filter (f); console.log (b)
Output result:
Example 2: returns all leap years
Var a = [1995 return false; 1996 var b = a.filter (f); function f (value) {if (value%4==0 & & value0) {var b = a.filter (f);
Output result:
The above is about the content of this article on "is filter the method of es6"? I believe we all have a certain 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.