call() call을 사용하면 this를 다른 값으로 변경할 수 있음. bind() this의 값을 바꾸는 것은 비슷하지만, 새로운 function(함수)이 출력된다. bind methods allows us to manually set this keywords for any function call. bind does not immediately call a function, it returns a new function where this keyword is bound. const koreanair = { airline: 'Korean Air', iataCode: 'KO', booking: [], book(flightNum, name) { console.log( `${name} booked a se..