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