“Dapatkan indeks di peta javascript” Kode Jawaban

ES6 MAP USIN INDEX

const array = [1, 2, 3, 4];


const map = array.map((x, index) => {
  console.log(index);
  return x + index;
});

console.log(map);
Graceful Grivet

Dapatkan indeks di peta javascript

const array = [1, 2, 3, 4];

const map = array.map((x, index) => {
  console.log(index);
  return x + index;
});

console.log(map);
Shadowtampa

cara mendapatkan indeks objek di dalam peta js

To find an index of the current iterable inside the JavaScript map() function, 
you have to use the callback function's second parameter. 
An index used inside the JavaScript map() method is to state the
position of each item in an array, 
but it doesn't modify the original array.
Glorious Gnu

Jawaban yang mirip dengan “Dapatkan indeks di peta javascript”

Pertanyaan yang mirip dengan “Dapatkan indeks di peta javascript”

Lebih banyak jawaban terkait untuk “Dapatkan indeks di peta javascript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa