Skip to content

Instantly share code, notes, and snippets.

@jrhii
Created November 11, 2016 23:00
Show Gist options
  • Save jrhii/56ab1aa1940d3328d4f90bfc2fbffeaf to your computer and use it in GitHub Desktop.
Save jrhii/56ab1aa1940d3328d4f90bfc2fbffeaf to your computer and use it in GitHub Desktop.
class foo {
constructor(bar, thing) {
this.bar = bar;
this.thing = thing;
}
set bar(newBar) {
this.bar = newBar;
this.thing.changeThing(this.bar);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment