this
는 호출 방식에 따라
this에 바인딩할 객체가 동적으로 결정
된다.함수 호출
void foo = function () { console.log(this); };
foo(); // this -> window
메소드 호출
const obj = { foo : foo };
obj.foo(); // this -> obj
생성자 함수 호출
const instance = new foo(); // this -> instance
apply / call / bind 호출
const bar = { name : 'bar' };
foo.call(bar);
foo.apply(bar);
foo.bind(bar)();
// this -> bar