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

1. Summary(3 Line) 프리코스 8일차(3줄 요약) - Scope의 범위에 따라 변수의 접근이 달라진다. - let 키워드와 var 키워드 const 키워드를 자유자재로 다뤄야 한다. - Koans 기본문제 마무리 하고 advanced 2문제 해결... (advanced는 꼭 해야된다...) 2. Today's Todo Scope 1) Global Scope 2) Local Scope - Function Scope - Block Scope Clousure #1 Scope(스코프) : 변수 접근 규칙에 따른 유효 범위 변수가 변수의 역할로 활동 가능한 범위 이다. let greeting = 'Hello';// 1~9줄은 Global Scope function greetSomeone() {// 3..
코드스테이츠/Today I Learned
2020. 8. 5. 09:41