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