Array.reduce (누적 연산)
2021.04.06
developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce Array.prototype.reduce() - JavaScript | MDN Array.prototype.reduce() reduce() 메서드는 배열의 각 요소에 대해 주어진 리듀서(reducer) 함수를 실행하고, 하나의 결과값을 반환합니다. The source for this interactive example is stored in a GitHub repository. If you'd developer.mozilla.org Array.reduce는 배열함수 중에서 가장 이해하기 애매한 함수였는데, 결국 배열마다 callback를 통해서 처리받은 va..