Advertisement
-Annie-

01.RectangleClass

Jul 10th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Rectangle {
  2.     constructor(width, height, color) {
  3.         this.width = width;
  4.         this.height = height;
  5.         this.color = color;
  6.     }
  7.  
  8.     calcArea(){
  9.         return this.width * this.height;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement