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 | 31 |
Tags
- improve-iq-by-up-to-10%!
- module wrapper function
- es6
- close together
- node
- Express
- flex-grow
- flexbox
- express-handlebars
- JS
- css
- select by attribute
- Prototype
- Node.js
- Engoo
- flex-basis
- Object.create
- shit-christmas
- img 확대
- 디자인패턴
- css grid
- 무료 백엔드 배포
- Sass
- flex-shrink
- just-one-small-sip
- regExp
- 정규표현식
- css variables
- ajax
- css 오버레이
Archives
- Today
- Total
Variable Scope 본문
전역에 사용된 var가 함수 안과 if 나 loop 안에서 어떤 차이를 보이는지에 주목하자.
// Global Scope
var a = 1;
let b = 2;
const c = 3;
// function test() {
// var a = 4; // differ from global a
// var b = 5;
// var c = 6;
// console.log(`Function Scope: ${a} ${b} ${c}`);
// }
// test();
// Block Scope (if, loop, etc... wrapped in culry braces..)
// if(true) {
// var a = 4; // same as global a
// let b = 5;
// const c = 6;
// console.log(`If Scope: ${a} ${b} ${c}`);
// }
for(var a = 0; a < 10; a++) {
console.log(`Loop: ${a}`); // same as global a too
}
console.log(`Global Scope: ${a} ${b} ${c}`);
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
single selector (0) | 2021.05.30 |
---|---|
Document Object (0) | 2021.05.30 |
Math Object (0) | 2021.05.29 |
Type Conversion (0) | 2021.05.29 |
null과 undefined의 차이 (0) | 2021.05.29 |
Comments