Javascript Execution Context
자바스크립트를 공부하면서 작성한 노트입니다. 🗒️
2023-09-15
클로저는 함수와 그 함수가 선언될 당시의 주변 상태(렉시컬 환경)에 대한 참조가 결합된 것입니다. 다시 말해 클로저는 내부 함수에서 외부 함수의 스코프에 접근할 수 있게 해줍니다. A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives you access to an outer function's scope from an inner function.
this
유현지
안녕하세요