How to calculate square root with Math.pow() function in JavaScript

1 Answer

0 votes
document.write("Math.pow(4, 0.5) = " + Math.pow(4, 0.5) + "<br />");
document.write("Math.pow(9, 0.5) = " + Math.pow(9, 0.5) + "<br />");
document.write("Math.pow(25, 0.5) = " + Math.pow(25, 0.5) + "<br />");

 
/*
run

Math.pow(4, 0.5) = 2
Math.pow(9, 0.5) = 3
Math.pow(25, 0.5) = 5

 
*/

 



answered Aug 5, 2016 by avibootz
...