document.write("Math.fround(3.14) = " + Math.fround(3.14) + "<br />");
document.write("Math.fround(7.446) = " + Math.fround(7.446) + "<br />");
document.write("Math.fround(0) = " + Math.fround(0) + "<br />");
document.write("Math.fround(1.5) = " + Math.fround(1.5) + "<br />");
document.write("Math.fround(NaN) = " + Math.fround(NaN) + "<br />");
/*
run
Math.fround(3.14) = 3.140000104904175
Math.fround(7.446) = 7.446000099182129
Math.fround(0) = 0
Math.fround(1.5) = 1.5
Math.fround(NaN) = NaN
*/