Copyright © tutorialspoint.com
Javascript date constructor property returns a reference to the array function that created the instance's prototype.
date.constructor |
Here is the detail of parameters:
NA
Returns the function that created this object's instance.
<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>
|
This will produce following result:
dt.constructor is: function Date() { [native code] }
|
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com