JavaScript String 构造函数属性 描述 构造函数返回一个引用,指向创建实例原型的字符串函数。 语法 它的语法如下所示 – string.constructorJavaScriptCopy 返回值 返回创建该对象实例的函数。 示例 尝试下面的示例。 <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>JavaScriptCopy 输出 str.constructor is: function String() { [native code] }JavaScriptCopy