forEach 方法遍歷數組:

ES5內建的 forEach 方法來遍歷數組:javascript

myArray.forEach(function (value) {
console.log(value);
});
//第一個參數是值,第二個參數是索引號,參數名可自定義。

eg:java

var letters = ['ab', 'cd', 'ef'];數組

再eg:code

function ShowResults(value, index, ar) {
    document.write("value: " + value);
    document.write(" index: " + index);
    document.write("<br />");
}
var letters = ['ab', 'cd', 'ef'];
letters.forEach(ShowResults);

結果:索引

來源:forEach 方法 (Array) (JavaScript)  https://msdn.microsoft.com/library/ff679980(v=vs.94).aspxip

相關文章
相關標籤/搜索