切换布局
显示结果
<html> <head> <title>JavaScript Array constructor Property</title> </head> <body> <script type = "text/javascript"> var arr = new Array( 10, 20, 30 ); document.write("arr.constructor is:" + arr.constructor); </script> </body> </html>