Detailed explanation of the use of the foreach () method in JavaScript

Source: Internet
Author: User
Tags foreach javascript extension javascript array

This article mainly introduces the use of the foreach () method in JavaScript, which is the basic knowledge in the learning of JS, the need of friends can refer to the following

The ForEach () method of a JavaScript array invokes each element in the array.

Grammar

?

1 Array.foreach (callback[, Thisobject]);

The following are the details of the parameters:

Callback: Function tests each element of an array.

Thisobject: Object is used as the execution callback.

return value:

Returns the creation of an array.

Compatibility:

This approach is a JavaScript extension to the ECMA-262 standard, so it may not exist in other implementations of the standard. To make it work, you need to add the top of the following scripting code:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14-15 16 if (! Array.prototype.forEach) {Array.prototype.forEach = function (Fun/*, thisp*/) {var len = this.length; if (typeof fun!=   "function") throw new TypeError (); var thisp = arguments[1]; for (var i = 0; i < len; i++) {if (i) Fun.call (Thisp, this[i], I, this); }

Example:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

This will produce the following results:

?

[0 ' is ' [1] is 5 [2] are 8 [3] is 130 [4] is a
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.