切换布局
显示结果
<html> <head> <title>JavaScript valueOf() Method </title> </head> <body> <script type = "text/javascript"> var num = new Number(15.11234); document.write("num.valueOf() is " + num.valueOf()); </script> </body> </html>