Lexical Scope변수의 유효 범위를 결정하는 규칙.코드가 실행될 때가 아니라 작성될 때 결정됨.Lexical = 문맥스코프 예시let globalVar = "global"; // 글로벌 스코프function outerFunction() { let outerVar = "outer"; // outerFunction의 렉시컬 스코프 function innerFunction() { let innerVar = "inner"; // innerFunction의 렉시컬 스코프 console.log(globalVar); // "global" console.log(outerVar); // "outer" console.log(innerVar); // "inner" } innerFunc..
C