일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 투두앱만들기
- 부트캠프
- CSS
- 웹개발
- Zustand
- 노마드코더
- REACT
- 자바스트립트
- JavaScript
- OOP
- 객체지향프로그래밍
- js
- 타입스크립트
- 자바스크립트
- 논리연산자
- 추상화
- github
- Props
- 프론트엔드
- 상속
- Fetch
- typeScript
- Hooks
- 불변성
- 클래스
- frontend
- 캡슐화
- 패스트캠퍼스
- 리액트
- webdevelopment
Archives
- Today
- Total
목록Online Class/Udemy (1)
connecting dots
JS | reduce - summing an array, for...of
reduceExecutes a reducer function on each element of the array, resulting in a single value.배열을 가져다가 점차 줄여가다가 하나의 값만 남기는 것 [3, 5, 7, 9, 11].reduce((accumulator, currentValue) => { return accumulator + currentValue;});callbackaccumulatorcurrentValuereturn valuefirst call358second call8715third call15824fourth call241135 accumulator: 줄여나가야 하는 대상, 총 합계currentValue: 각각의 개별 요소 인수 추가 가능const evens = ..
Online Class/Udemy
2024. 6. 13. 10:48