본문 바로가기

JAVASCRIPT

The .reduce() Method

const numbers = [1, 2, 4, 10];

const summedNums = numbers.reduce((accumulator, currentValue) => {
  return accumulator + currentValue
})

console.log(summedNums) // Output: 17
const numbers = [1, 2, 4, 10];

const summedNums = numbers.reduce((accumulator, currentValue) => {
  return accumulator + currentValue
}, 100)  // <- Second argument for .reduce()

console.log(summedNums); // Output: 117

reduce() 메서드는 배열의 각 요소에 대해 주어진 리듀서(reducer) 함수를 실행하고, 하나의 결과값을 반환합니다.

'JAVASCRIPT' 카테고리의 다른 글

some () 예문  (0) 2020.06.24
forEach() 예문  (0) 2020.06.24
The .findIndex() Method  (0) 2020.06.23
The .filter() Method  (0) 2020.06.23
The .forEach() Method  (0) 2020.06.14