Anda akan bisa mendapatkan iterasi saat ini index
untuk map
metode melalui parameter ke-2.
Contoh:
const list = [ 'h', 'e', 'l', 'l', 'o'];
list.map((currElement, index) => {
console.log("The current iteration is: " + index);
console.log("The current element is: " + currElement);
console.log("\n");
return currElement; //equivalent to list[index]
});
Keluaran:
The current iteration is: 0 <br>The current element is: h
The current iteration is: 1 <br>The current element is: e
The current iteration is: 2 <br>The current element is: l
The current iteration is: 3 <br>The current element is: l
The current iteration is: 4 <br>The current element is: o
Lihat juga: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map
Parameter
callback - Fungsi yang menghasilkan elemen dari Array baru, mengambil tiga argumen:
1) currentValue
Elemen saat ini sedang diproses dalam array.
2) indeks
Indeks elemen saat ini sedang diproses dalam array.
3) array
Peta array dipanggil.