JavaScript with Math
Using JavaScript for math
Math.round(4.6);
Math.round(2.3);
Math.ceil(4.9);
Math.ceil(4.2);
Math.floor(6.7);
Math.floor(2.1);
Math.sign(2);
Math.sign(-4);
Math.pow(4, 2);
Math.pow(3, 4);
Math.sqrt(4);
Math.sqrt(15);
Math.abs(7);
Math.abs(-54278);