-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuilding blocks.js
53 lines (38 loc) · 1.32 KB
/
Building blocks.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
// Write a class Block that creates a block (Duh..)
// Requirements
// The constructor should take an array as an argument, this will contain 3 integers of the form [width, length, height] from which the Block should be created.
// Define these methods:
// `getWidth()` return the width of the `Block`
// `getLength()` return the length of the `Block`
// `getHeight()` return the height of the `Block`
// `getVolume()` return the volume of the `Block`
// `getSurfaceArea()` return the surface area of the `Block`
// Examples
// let b = new Block([2,4,6]) -> creates a `Block` object with a width of `2` a length of `4` and a height of `6`
// b.getWidth() // -> 2
// b.getLength() // -> 4
// b.getHeight() // -> 6
// b.getVolume() // -> 48
// b.getSurfaceArea() // -> 88
// Note: no error checking is needed
// Any feedback would be much appreciated
class Block{
constructor(data){
[this.width, this.length, this.height]= data
}
getWidth(){
return this.width;
}
getLength(){
return this.length;
}
getHeight(){
return this.height;
}
getVolume(){
return this.width * this.length * this.height
}
getSurfaceArea(){
return 2*((this.width * this.length) + (this.length * this.height) + (this.height * this.width))
}
}