JSFiddle - React, Tailwind, and code Playground
by tea4two
JavaScript
let boromir = {
/* blabber: talk, */
sound: 'blah blah blah',
}
let talk = function() {
//console.log(this.sound);
return this.sound;
}
/* console.log(boromir.blabber()); */
let bound = talk.bind(boromir);
console.log(bound());
// 乗っけた時点の実行と
// talk自体の実行を兼ねている