Created
March 7, 2018 19:18
-
-
Save collardeau/73b0d3813d58780f47f0ff3592604712 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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