forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyramid.js
More file actions
Latest commit
25 lines (22 loc) · 668 Bytes
/
Copy pathPyramid.js
File metadata and controls
25 lines (22 loc) · 668 Bytes
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
/**
* This class represents a regular pyramid and can calculate its volume and surface area
* https://en.wikipedia.org/wiki/Pyramid_(geometry)
* @constructor
* @param {number} bsl - The side length of the base of the pyramid.
* @param {number} height - The height of the pyramid
*/
exportdefaultclassPyramid{
constructor(bsl,height){
this.bsl=bsl
this.height=height
}
baseArea=()=>{
returnMath.pow(this.bsl,2)
}
volume=()=>{
returnthis.baseArea()*this.height/3
}
surfaceArea=()=>{
returnthis.baseArea()+this.bsl*4/2*Math.sqrt(Math.pow(this.bsl/2,2)+Math.pow(this.height,2))
}
}