/scope.js Secret
Created
May 1, 2022 13:55
This file contains hidden or 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
var i = 10; | |
// var 키워드로 for 문에서 선언한 변수 i는 전역변수 | |
// 이미 선언한 전역 변수 i가 있으므로 중복 선언 | |
for(var i = 0; i < 5; i++) { | |
console.log(i) // 0 1 2 3 4 5 | |
} | |
// 의도치 않게 변수와 값이 변경 | |
console.log(i) // 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment