Lexicalscope 썸네일형 리스트형 자바스크립트 클로저(javascript closures) Closures 0. Closure 정의 'A closure is the combination of a function and the lexical environment within which that function was declared' 클로저에 대한 MDN의 정의입니다. 클로저는 선언되었을 때의 렉시컬 환경에 영향을 받습니다. 따라서 클로저를 알기 위해선 **Lexical Scope**에 대한 이해가 필요합니다. 1. Lexical Scoping function showName() { const name = "Kim"; // name은 showName 함수 내부에 생성된 지역 변수입니다. function displayName() { // displayName() 은 내부 함수이며,클로저입니다. c.. 더보기 이전 1 다음