Date对象是JavaScript语言内建的数据类型。使用新的Date()创建日期对象。本文主要介绍JavaScript(JS) date.constructor 属性。

1、描述

JavaScript的date constructor 属性返回对创建实例原型的数组函数的引用。

2、语法

它的语法如下:

date.constructor

3、返回值

返回创建此对象实例的函数。

4、使用示例

<html>
   <head>
      <title>JavaScript Date constructor Property</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var dt = new Date();
         document.write("dt.constructor = " + dt.constructor); 
      </script>      
   </body>
</html>

5、输出

dt.constructor = function Date() { [native code] } 

推荐文档

相关文档

大家感兴趣的内容

随机列表