await callback
function apiOn(event) {
return new Promise(resolve => {
api.on(event, response => resolve(response));
});
}
await callback
function apiOn(event) {
return new Promise(resolve => {
api.on(event, response => resolve(response));
});
}
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us