배열을 반복하는 세 가지 방법
예: [2, 4, 6] --> [4, 8, 12]
번호 #1: for 루프를 사용하여 요소를 반복하고 각 요소를 변환하고 결과를 새 배열로 푸시합니다.
function doubleValues(array) {
let result = [];
for (let i = 0; i < array.length; i++) {
result.push(array[i] * 2);
}
return result;
}
console.log(doubleValues([1, 2, 3, 4]));
// [2, 4, 6, 8]
번호 #2: For-of 루프.
function doubleValues(array) {
let result = [];
for (const element of array) {
result.push(element * 2);
}
return result;
}
console.log(doubleValues([1, 2, 3, 4]));
// [2, 4, 6, 8]
번호 #3: JavaScript 배열 유형은 배열 요소를 보다 깔끔한 방식으로 변환할 수 있는 map() 메서드를 제공합니다.
const array = [1, 2, 3, 4];
const doubleValues = array.map(element => element * 2);
console.log(doubleValues);
// [2, 4, 6, 8]
Reference
이 문제에 관하여(배열을 반복하는 세 가지 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jolamemushaj/three-ways-to-iterate-an-array-340j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)