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
*/