Skip to content

Instantly share code, notes, and snippets.

@choonkending
Created September 21, 2016 05:05
Show Gist options
  • Save choonkending/dc4c801b4e41df0ff760950531eecd60 to your computer and use it in GitHub Desktop.
Save choonkending/dc4c801b4e41df0ff760950531eecd60 to your computer and use it in GitHub Desktop.
how this used to be used
button.addEventListener('click', function(e) {
// Something
}.bind(this));
button.addEventListener('click', e => {
// Something
});
class ViewModel {
constructor(prop1, prop2) {
this.prop1 = prop1;
this.prop2 = prop2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment