Foreach พาดัชนีจาวาสคริปต์

รหัสตัวอย่าง

52
0

N

var colors = ['red', 'blue', 'green'];

colors.forEach(function(color) {
  console.log(color);
});
32
0

N

let words = ['one', 'two', 'three', 'four'];
words.forEach((word) => {
  console.log(word);
});
// one
// two
// three
// four
22
0

N

const array1 = ['a', 'b', 'c'];

array1.forEach(element => console.log(element));
12
0

N

users.forEach((user, index)=>{
	console.log(index); // Prints the index at which the loop is currently at
});
8
0

N

let colors = ['red', 'blue', 'green'];
// idx and sourceArr optional; sourceArr == colors
colors.forEach(function(color, idx, sourceArr) {
	console.log(color, idx, sourceArr)
});
// Output:
// red 0 ['red', 'blue', 'green']
// blue 1 ['red', 'blue', 'green']
// green 2 ['red', 'blue', 'green']
3
0

N

const array1 = ['a', 'b', 'c'];

array1.forEach((element, index) => console.log(element, index));

หน้าคล้ายกัน

คล้ายกันหน้ากับตัวอย่าง

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................