JavaScript foreach () traverses the print output array element values

Source: Internet
Author: User
Tags javascript array

To print the contents of an array:
Code:
--------------------------------------------------------------------------------

The code is as follows Copy Code

function Printelt (element, index, array) {
Document.writeln ("[" + Index + "] is" + element + "<br/>");
}
[2, 5, 9].foreach (Printelt);
Prints:
[0] is 2
[1] is 5
[2] is 9
Results:
--------------------------------------------------------------------------------
[0] is 2
[1] is 5
[2] is 9

The


Prints the contents of the array using the object's method:
Code:
------------------------------------------------------------------------------- -

The code is as follows Copy Code

var writer = {
SB: [],
Write:function (s) {
This.sb.push (s);
},
Writeln:function (s) {
This.write (S + "<br/>");
},
Tostring:function () {
Return This.sb.join ("");
}
};

[2, 5, 9].foreach (Writer.writeln, writer);
Document.writeln (Writer.tostring ());
Prints:
2
5
9
Results:
--------------------------------------------------------------------------------
2
5
9


Look at the example below

The code is as follows Copy Code

<script language= "JavaScript" type= "Text/javascript" >

Description: The ForEach method for Javascript Array
Finishing: Http://www.111cn.net
Source: Http://www.111cn.net

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 in this)
Fun.call (Thisp, this[i], I, this);
}
};
}

</script>

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.