Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📚 24장 클로저
Q1. 출력되는 값을 적어주세요
🌟 답안
1, 2
Q2. 외부 함수 밖에서 내부함수가 호출되더라도 외부함수의 지역 변수에 접근할 수 있는 이유를 설명해주세요.
🌟 답안
함수는 호출된 위치가 아닌 선언된 위치에서의 렉시컬 환경을 기억하므로 외부 함수 밖에서 호출되더라도 상위 스코프에 존재하는 외부 함수의 지역변수에 접근할 수 있습니다.
Q3. 빈칸을 채워주세요
객체의 상태를 나타내는 프로퍼티와 프로퍼티를 참조하고 조작할 수 있는 동작인 메서드를 하나로 묶는 것을 [ ] 라고 한다.
이때, [ ] 은 객체의 특정 프로퍼티나 메서드를 감출 목적으로 사용하기도 하는데 이를 [ ] 라고 한다.
🌟 답안
객체의 상태를 나타내는 프로퍼티와 프로퍼티를 참조하고 조작할 수 있는 동작인 메서드를 하나로 묶는 것을
캡슐화
라고 한다.이때,
캡슐화
은 객체의 특정 프로퍼티나 메서드를 감출 목적으로 사용하기도 하는데 이를정보 은닉
라고 한다.✓ issues #1004