Advertisement
Guest User

discodeClass

a guest
Sep 18th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Box {
  2.     constructor(x, y, w, h) {
  3.         this.x = x;
  4.         this.y = y;
  5.         this.w = w;
  6.         this.h = h;
  7.     }
  8.     log(val) {
  9.         console.log(val);
  10.     }
  11. }
  12.  
  13. var box = new Box(0, 0, 10, 10);
  14. console.log(box.w);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement