Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

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>

  1. 文字列をJavaScriptオブジェクトに変換する方法は?

    以下は、文字列をJavaScriptオブジェクトに変換するコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> &nbs

  2. 多次元JavaScriptオブジェクトを作成するにはどうすればよいですか?

    以下は、多次元JavaScriptオブジェクトを作成するためのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> &n