サイト内検索

Date プロパティ一覧

スポンサー

ホーム > Date > constructor

constructor

オブジェクトの作成元の参照を取得します.

シンタックス

object.constructor

サンプルコード

以下にconstructorプロパティを使用したサンプルコードを示します.

<html>
  <head>
    <title>constructorプロパティのサンプルコード</title>
  </head>
  <body>
    <script type="text/javascript" language="javascript">
      var dt = new Date();

      /* constructorプロパティの値を表示 */
      document.write(dt.constructor + "<br />");

      if (dt.constructor == Date) {
        document.write("Dateオブジェクト");
      } else {
        document.write("Dateオブジェクト以外");
      }
    </script>
  </body>
</html>

実行例

サンプルコードの実行結果は以下のようになります.

function Date() { [native code] }
Dateオブジェクト

スポンサード リンク

inserted by FC2 system