在JavaScript中创建String对象的构造函数是什么?

要在JavaScript中创建String对象,请使用string.constructor。构造函数返回对创建实例原型的字符串函数的引用。

示例

您可以尝试运行以下代码以使用构造函数创建String对象-

<html>
   <head>
      <title>JavaScript String constructor Method</title>
   </head>

   <body>
      <script>
         var str = new String( "This is string" );
         document.write("str.constructor is:" + str.constructor);
      </script>
   </body>
</html>