04 - Math class Methods

Math.PI
3.141592653589793
Math.E
2.718281828459045
Math.sqrt(16)
4
Math.sqrt(25)
5
Math.sqrt(10)
3.1622776601683795
Math.abs(-98);
98
Math.abs(98);
98
Math.max(2,3,4,5);
5
Math.min(2,3,4,5);
2
Math.round(3.14);
3
Math.round(3.64);
4
Math.round(3.44);
3
Math.round(3.74);
4
Math.floor(3.14);
3
Math.ceil(3.14);
4