[Lexical scoping & Closure] 어휘적 범위 지정, 클로저
| Lexical scoping > Lexical Scoping Example - "Lexical" : Lexical Scoping 과정에서 변수가 어디에서 사용 가능한지 알기 위해 그 변수가 소스코드 내 어디에서 선언되었는지를 고려한다는 것을 의미 12345678function init() { var name = "Mozilla"; // name은 init에 의해 생성된 지역 변수 function displayName() { // displayName() 은 내부 함수이며, 클로저 alert(name); // 부모 함수에서 선언된 변수를 사용 } displayName();}init();Colored by Color Scriptercs - 결과 : Mozilla- displayName()은 내부엔 자신만..
Web
2021. 1. 15. 14:22