-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathclasses.js
61 lines (54 loc) · 1.52 KB
/
classes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// 1. Copy and paste your prototype in here and refactor into class syntax.
class CuboidMaker2 {
constructor(attributes){
this.length = attributes.length;
this.width = attributes.width;
this.height = attributes.height;
}
volume (){
return this.length * this.width * this.height;
}
surfaceArea(){
return (
2 *
(this.length * this.width +
this.length * this.height +
this.width * this.height)
);
}
}
let cuboid2 = new CuboidMaker2({
length: 4,
width: 5,
height: 5,
});
// Test your volume and surfaceArea methods by uncommenting the logs below:
console.log(cuboid2.volume()); // 100
console.log(cuboid2.surfaceArea()); // 130
// 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.
class CubeMaker extends CuboidMaker {
constructor(attributes){
super(attributes);
}
CubeVolume(){
return (
this.length *
this. width *
this.height
);
}
CubeSurfaceArea(){
return 2 * (
this.length * this.length +
this.width * this.width +
this.height * this.height
);
}
}
let cube = new CubeMaker ({
length: 5,
width: 5,
height: 5,
});
console.log(cube.CubeVolume()); // 125
console.log(cube.CubeSurfaceArea()); // 150