호출 방식

  1. 함수 호출

    void foo = function () { console.log(this); };
    foo(); // this -> window
    
  2. 메소드 호출

    const obj = { foo : foo };
    obj.foo(); // this -> obj
    
  3. 생성자 함수 호출

    const instance = new foo(); // this -> instance
    
  4. apply / call / bind 호출

    const bar = { name : 'bar' };
    foo.call(bar);
    foo.apply(bar);
    foo.bind(bar)();
    // this -> bar