var my_val=11.257;
document.write (my_val.toFixed(2)); // output 11.26
document.write ("----");
var my_val=11.25;
document.write (my_val.toFixed(1)); // output 11.3
document.write ("----");
var my_val=11.978;
document.write (my_val.toFixed(4)); // output 11.9780
document.write ("----");
Friday, June 5, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment