Skip to content

Instantly share code, notes, and snippets.

@tjwebb
Created October 11, 2016 16:13
Show Gist options
  • Save tjwebb/298f253ff50cf1ed476f3c18f63417f7 to your computer and use it in GitHub Desktop.
Save tjwebb/298f253ff50cf1ed476f3c18f63417f7 to your computer and use it in GitHub Desktop.
ES6 Class Example
class Foo {
test () {
return this.x
}
constructor () {
this.x = 1
}
}
class Bar {
test () {
return this.x
}
constructor () {
this.x = 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment