Home > Web Front-end > JS Tutorial > body text

Detailed explanation of forEach, $.each and map methods in JavaScript

黄舟
Release: 2017-11-16 15:17:53
Original
2108 people have browsed it

In our previous article, we introduced to you a detailed explanation of the foreach statement in php, as well as an introduction to the use of foreach and each, so today we will introduce to you about orEach and $.each in JS and Detailed description of map method!

forEach is the most basic one of the new Array methods in ECMA5, which is traversal and looping. For example, the following example:

[1, 2 ,3, 4].forEach(alert);
Copy after login

is equivalent to the following for loop

var array = [1, 2, 3, 4];
for (var k = 0, length = array.length; k < length; k++) {
 alert(array[k]);
}
Copy after login

Array. In the new methods of ES5, the parameters are all function types, by default There are parameters passed, and the function callback in the forEach method supports 3 parameters. The first one is the traversed array content; the second one is the corresponding array index, and the third one is the array itself.

Therefore, we have:

[].forEach(function(value, index, array) {
  // ...
});
Copy after login

Compare the $.each method in jQuery:

$.each([], function(index, value, array) {
  // ...
});
Copy after login

will find that, The first and second parameters are exactly opposite. Please pay attention and don’t remember them wrongly. The same is true for similar methods later, such as $.map.

var data=[1,3,4] ; 
var sum=0 ;
data.forEach(function(val,index,arr){
  console.log(arr[index]==val);  // ==> true
  sum+=val            
})
console.log(sum);          // ==> 8
Copy after login

map

The map here does not mean "map", but "mapping". [].map(); The basic usage is similar to the forEach method:

array.map(callback,[ thisObject]);
Copy after login

The parameters of callback are also similar:

[].map(function(value, index, array) {
  // ...
});
Copy after login

The function of the map method is not difficult to understand, "mapping", that is, the original The array is "mapped" into the corresponding new array. The following example is to find the square of a numerical item:

var data=[1,3,4]

var Squares=data.map(function(val,index,arr){
  console.log(arr[index]==val);  // ==> true
  return val*val           
})
console.log(Squares);        // ==> [1, 9, 16]
Copy after login

Note: Since forEach and map are new array methods in ECMA5, browsers below IE9 do not support it yet (the damn IE), but, All the above functions can be achieved by extending from the Array prototype, such as the forEach method:

if (typeof Array.prototype.forEach != "function") {
  Array.prototype.forEach = function() {
    /* 实现 */
  };
}
Copy after login

Summary:

This article introduces it in detail# The forEach, $.each and map methods in ##JavaScript are basically similar in use. You can choose according to your own needs!
Related recommendations:

A brief introduction to foreach and each in JS


Detailed explanation of Foreach syntax in JavaScript


FOREACH in JavaScript Examples of using array methods

The above is the detailed content of Detailed explanation of forEach, $.each and map methods in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!