holdanddeepdive / javascript-deep-dive

3 stars 1 forks source link

20장 strict mode #17

Open Choozii opened 2 years ago

Choozii commented 2 years ago
humonnom commented 2 years ago

20.6.1 함수바인딩: this

318.p strict mode non strict mode
일반함수 undefined 전역객체에 바인딩
생성자(new 연산자 사용) 자기 자신(객체)에 바인딩 자기 자신(객체)에 바인딩
humonnom commented 2 years ago

즉시 실행 함수 복습