The foreach array method in JavaScript uses the example _ basics

Source: Internet
Author: User

The Array.prototype.forEach () method lets each item of an array perform a given function once. -mdn

Suppose there was such a scene that you got such an array of

[
{symbol: "XFX", price:240.22, volume:23432},
{symbol: "TNZ", price:332.19, volume:234},
{symbol: "Jxj", price:120.22, volume:5323},
]

You need to create a new array for symbol, which is

["XFX", "TNZ", "JXJ"]
Can generally be implemented in a For loop:

function Getstocksymbols (stocks) {
 var symbols = [], stock
   ,
   i;
   
 for (i = 0; i < stocks.length i++) {The stock
  = stocks[i];
  Symbols.push (Stock.symbol);
 }

 return symbols;
}

var symbols = Getstocksymbols ([
 {symbol: "XFX", price:240.22, volume:23432},
 {symbol: "TNZ", price:332.19, volume:234},
 {symbol: "Jxj", price:120.22, volume:5323},
]);

Output: "[/" xfx/"," tnz/"," jxj/"]"

You can also use the array's foreach method to simplify the code, and their output is exactly the same.

function Getstocksymbols (stocks) {
 var symbols = [];

 Stocks.foreach (function (stock) {
  Symbols.push (stock.symbol);
 });

 return symbols;
}

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.