728x90
반응형
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// tdz.js | |
var con = 10; | |
if(con){ | |
console.log(typeof a); // ReferenceError: a is not defined | |
let a = 10; | |
} |
728x90
반응형
'Javascript' 카테고리의 다른 글
치환자 ${} (0) | 2018.11.22 |
---|---|
JSFiddle 에서 console 사용하기 (0) | 2018.11.22 |
non TDZ (0) | 2018.11.22 |
closure (0) | 2018.11.22 |
fibonacci.js (0) | 2018.11.08 |