Advertisement
kstoyanov

01. Rectangle

Sep 22nd, 2020
48
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 = Number(width);
  4.     this.height = Number(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