바인딩1 [Javascript] this 객체 바인딩 , 함수 바인딩 var fullname = 'Ciryl Gane'var fighter = { fullname: 'John Jones', opponent: { fullname: 'Francis Ngannou', getFullname: function () { // 객체 this 바인딩 -> Francis Ngannou return this.fullname; } }, getName: function() { // 객체 this 바인딩 -> John Jonse return this.fullname; }, getFirstName: () => { // 함수 this 바인딩 -> Ciry.. 2024. 7. 29. 이전 1 다음