Answers for "promises and not callbacks"

0

promises and not callbacks

var Button = function(content) {   this.content = content;};Button.prototype.click = function() {  console.log(this.content + ' clicked');}var myButton = new Button('OK');myButton.click();var looseClick = myButton.click;looseClick(); // not bound, 'this' is not myButton - it is the global objectvar boundClick = myButton.click.bind(myButton);boundClick(); // bound, 'this' is myButton
Posted by: Guest on September-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language