Skip to content

Commit

Permalink
Update 신상민.md
Browse files Browse the repository at this point in the history
  • Loading branch information
qilip authored Feb 1, 2024
1 parent bad5104 commit 45e8595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 05회차(20장~22장)/신상민.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Global object (아까 그거랑은 다름)

### 21.4.3 암묵적 전역

뜬금없이 `y = 9999999` 같은걸 넣으면 엔진은 window.y = 20 으로 해석해 전역 객체에 프로퍼티를 동적 생성한다.
뜬금없이 `y = 9999999` 같은걸 넣으면 엔진은 window.y = 9999999 으로 해석해 전역 객체에 프로퍼티를 동적 생성한다.

전역 객체의 프로퍼티이므로 마치 전역 변수처럼 동작하게 된다. 하지만 변수가 아니므로 변수 호이스팅이 발생하지 않고, delete 연산자로 삭제할 수 있다.

Expand Down Expand Up @@ -221,4 +221,4 @@ const arr = Array.prototype.slice.call(arguments);
```jsx
setTimeout(callbackFunction.bind(this), 100); // this를 바인딩
```
```

0 comments on commit 45e8595

Please sign in to comment.