Skip to content

Instantly share code, notes, and snippets.

@collardeau
Created March 7, 2018 19:18
Show Gist options
  • Save collardeau/73b0d3813d58780f47f0ff3592604712 to your computer and use it in GitHub Desktop.
Save collardeau/73b0d3813d58780f47f0ff3592604712 to your computer and use it in GitHub Desktop.
class Box {
constructor(x) {
this.value = x;
}
static of(x) {
return new Box(x);
}
log() {
console.log(this.value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment