-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.js
More file actions
20 lines (17 loc) · 907 Bytes
/
classes.js
File metadata and controls
20 lines (17 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 1. Copy and paste your prototype in here and refactor into class syntax.
class CuboidMaker(properties){
this.length = properties.length;
this.width = properties.width;
this.height = properties.height;
volume(){
return this.length*this.width*this.height;
}
surfacearea(){
return 2*(this.length*this*width+this.width*this.height+this.height*this.length);
}
}
// Test your volume and surfaceArea methods by uncommenting the logs below:
console.log(cuboid.volume()); // 100
console.log(cuboid.surfaceArea()); // 130
const cuboid = new CuboidMaker({length: 7, width: 6, height: 5});
// Stretch Task: Extend the base class CuboidMaker with a sub class called CubeMaker. Find out the formulas for volume and surface area for cubes and create those methods using the dimension properties from CuboidMaker. Test your work by logging out your volume and surface area.