On the foreach and each in JavaScript

Source: Internet
Author: User

foreach is a method of manipulating an array in ES5, and the main function is to iterate through the array, for example:

  

var arr = [1,2,3,4];arr.foreach (alert);

Equivalent to:

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

The function callback in the Foreach method has three parameters: the first argument is the array contents of the traversal, the second parameter is the corresponding array index, and the third parameter is the array itself

So:

[].foreach (function (Value,index,array) {

Code something

});

Equivalent to:

$.each ([],function (Index,value,array) {

Code something

})

Write an example;

var arr = [1,2,3,4];arr.foreach (function (value,index,array) {    Array[index] = = value;    The result is true    sum+=value;       }); Console.log (sum);    Result is 8

Map:map is a "map" that uses the same meaning as a forEach, using the following:

[].map (function (Value,index,array) {

Code

})

On the foreach and each in JavaScript

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.