Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 1일 1영어회화
- 용산아이파크몰
- 결혼준비
- 결혼
- 영어 회화
- 영어회화
- 예비맘
- 달리기
- 산책
- 설날
- 영어공부
- 스타일 가이드
- javascript
- HTML
- 1일 1독서
- 청첩장
- 가을
- 초코맘
- 재택근무
- 1일 1패턴
- css
- event
- 출산휴가
- 신혼
- effect
- 1일 1단어
- 업무
- 신혼생활
- animation
- 자바스크립트 스타일 가이드
Archives
- Today
- Total
코딩물고기
[자바스크립트] reduce 본문
728x90
const numbers = [1, 2, 3, 4, 5];
// reduce 통해서 전체 합 구하기,
// const sum = numbers.reduce(
// (accumulator, current, index, array) => accumulator + current,
// 0
// );
// console.log(sum);
// avg = 평균구하기
const avg = numbers.reduce((accumulator, current, index, array) => {
if (index === array.length - 1) {
return (accumulator + current) / array.length;
}
return accumulator + current;
}, 0);
console.log(avg);
------------------------------------------------------------
const alphabets = ["a", "a", "a", "b", "c", "d"];
const counts = alphabets.reduce((acc, current) => {
if (acc[current]) {
acc[current] += 1;
} else {
acc[current] = 1;
}
return acc;
}, {});
console.log(counts);
728x90
'코딩물고기의 IT월드' 카테고리의 다른 글
[javascript] 카운터 만들기 (0) | 2020.09.01 |
---|---|
[자바스크립트] constructor (0) | 2020.08.24 |
[자바스크립트] filter (0) | 2020.08.24 |
[css] img 고정 (0) | 2020.08.20 |
[iframe] iframe 비율 (0) | 2020.08.20 |
Comments