당신은 현재 반복의 얻을 수있을 것입니다 index
에 대한 map
자사의 두번째 매개 변수를 통해 방법을.
예:
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]
});
산출:
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
참조 : https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map
매개 변수
콜백-세 개의 인수를 사용하여 새 배열의 요소를 생성하는 함수입니다.
1) currentValue
배열에서 처리중인 현재 요소입니다.
2) 색인
배열에서 처리중인 현재 요소의 색인.
3) 배열
배열 맵이 호출되었습니다.