Skip to content

Instantly share code, notes, and snippets.

@HSchmale16
Created April 22, 2019 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HSchmale16/f428ebd3a744158a99a9ddd265b89301 to your computer and use it in GitHub Desktop.
Save HSchmale16/f428ebd3a744158a99a9ddd265b89301 to your computer and use it in GitHub Desktop.
class T {
constructor(x) {
this.x = document.getElementById(x);
x.addEventListener(x, this.test);
}
test = (x) => {
console.log(this, x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment