Guest User

Untitled

a guest
Mar 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Box {
  2. constructor(x) {
  3. this.value = x;
  4. }
  5. static of(x) {
  6. return new Box(x);
  7. }
  8. log() {
  9. console.log(this.value);
  10. }
  11. }
Add Comment
Please, Sign In to add comment