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