Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var num = new Number(123);
- var fix = num.toFixed();
- document.write(fix);
- document.write("<br/>");
- num = new Number(123.456);
- fix = num.toFixed(5);
- document.write(fix);
- // Output:
- // 123
- 123.45600
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement