일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 코드스테이츠 1일차
- indexof
- nvm 설치
- version control system
- foreach
- npm 설치
- package.json
- local scope
- supertest
- dot notation
- HTML 태그 모음
- 스프린트 리뷰
- TIL
- node 설치
- 슈도코드
- javascript 기초
- global scope
- JavaScript Runtime
- for in
- includes
- Jest
- for of
- Splice
- 코딩게임
- testbuilder
- immutable
- 2번째 페어
- 호이스팅
- Bracket Notation
- 코플릿
- Today
- Total
목록코드스테이츠/Today I Learned (26)
Honey-Programming

1. Today's Todo let / var / const 개념과 비교 mutable vs immutable slice splice split forEach map reduce 2. Achievement Goal let / var / const 개념과 비교 (O) mutable vs immutable (O) slice (O) splice (O) split (O) forEach (O) map (X) reduce (X) # let / var / const 차이 var, let, const 차이(비교) 1. var ( 변수 재선언 가능 ) var variable = '변수선언함'; console.log(variable); //변수선언함 var variable = '또 변수선언함'; console.log(va..

1. Today's Todo 호이스팅 & 스코프 let / var / const 개념과 비교 dot notation / bracket notation / in 연산자 Array.isArray / indexOf / includes push / pop / shift / unshift (배열의 요소 추가 및 삭제) 2. Achievement Goal 호이스팅 & 스코프 (O) let / var / const 개념과 비교 (X) dot notation / bracket notation / in 연산자 (O) Array.isArray / indexOf / includes (O) push / pop / shift / unshift (O) # 호이스팅 & 스코프 Hoisting(호이스팅) & Scope(스코프) le..