apply1 call , apply, bind call 모든 함수에서 사용할 수 있으며, this를 특정값으로 지정할 수 있다. const kim = { name: 'Kim' }; const lee = { name: 'Lee' }; function showThisName(){ console.log(this.name); } function update(brithYear, occupation){ this.brithYear = brithYear; this.occupation = occupation; }; update.call(kim,1999,"backend"); update.call(tom,2002,"frontend"); apply 함수 매개변수를 처리하는 방법을 제외하면 call과 같다. 다만 call은 일반적인 함수와 마찬가지로 매개변수로 직접 받지만.. 2023. 8. 1. 이전 1 다음