javascript日期constructor屬性返回一個參照到建立範例的prototype陣列函式。
date.constructor
下面是引數的詳細資訊:
NA
返回建立此物件的範例的函式。
<html> <head> <title>JavaScript Date constructor Property</title> </head> <body> <script type="text/javascript"> var dt = new Date(); document.write("dt.constructor is : " + dt.constructor); </script> </body> </html>
這將產生以下結果:
dt.constructor is: function Date() { [native code] }