The Date object in JavaScript is used to represent a moment of time. This time value is since 1 January 1970 UTC (Coordinated Universal Time). We can create a date using the Date object by calling the new Date() constructor as shown in the below syntax.
Syntax:
new Date(); new Date(value); new Date(dateString); new Date(year, month, day, hours, minutes, seconds, milliseconds);
Parameters: All of the parameters as shown in the above syntax are described below:
- value : This value is the number of milliseconds since January 1, 1970, 00:00:00 UTC.
- dateString : This represents a date format.
- year : This is represented by integer values which ranging from years 1900 to 1999.
- month : This is represented by integer values which ranging from 0 for January to 11 for December.
- day : This is an optional parameter. This is represented by integer value for the day of the month.
- hours : This is optional. This is represented by integer value for the hour of the day.
- minutes : This is optional. This is represented by integer value for the minute of a time.
- seconds : This is optional. This is represented by integer value for the second of a time.
- milliseconds : This is optional. This is represented by integer value for the millisecond of a time.
Return Values: It returns the present date and time if nothing as the parameter is given otherwise it return the date format and time in which parameter is given.
Let’s see JavaScript programs on Date object.
- Example 1: If nothing as the parameter is given, it returns present date and time.
<script>// If nothing as parameter is given,// it represent the present date and time.varA =newDate();// Printing present date and time.document.write(A);</script>chevron_rightfilter_noneOutput:
Wed Mar 21 2018 20:44:40 GMT+0530 (India Standard Time)
- Example 2: When any integer value is taken as the parameter then it given the number of milliseconds since January 1, 1970, 00:00:00 UTC.
<script>// Parameter as integer value give the number of// milliseconds since January 1, 1970, 00:00:00 UTC.varA =newDate(32549);document.write(A);</script>chevron_rightfilter_noneOutput:
Thu Jan 01 1970 05:30:32 GMT+0530 (India Standard Time)
- Example 3: When any dataString is given as the parameter then it return the same as the parameter including day name.
<script>// When any dataString is given as the parameter// then it return the same as the parameter// including day name.varA =newDate('June 22, 1985 07:19:35');document.write(A);</script>chevron_rightfilter_noneOutput:
Sat Jun 22 1985 07:19:35 GMT+0530 (India Standard Time)
- Example 4: When some numbers are taken as the parameter then they are considered as year, month, day, hours, minutes, seconds, milliseconds respectively.
<script>// When some numbers are taken as the parameter// then they are considered as year, month, day,// hours, minutes, seconds, milliseconds// respectively.varA =newDate(1996, 10, 13, 5, 30, 22);document.write(A);</script>chevron_rightfilter_noneOutput:
Wed Nov 13 1996 05:30:22 GMT+0530 (India Standard Time)
Errors and Exceptions: To check this you have to check in console.
- Example 1: Any integer number should be taken as the parameter not any name otherwise it gives error.
<script>// Any integer number should be taken// as the parameter not any name.varA =newDate(gfg);document.write(A);</script>chevron_rightfilter_noneOutput:
Error: gfg is not defined
- example 2: Any integer number should be take as the parameter not any other number e.g- complex number.
<script>// Any integer number should be take as// the parameter not any other number// e.g- complex number.varA =newDate(1 + 5i);document.write(A);</script>chevron_rightfilter_noneOutput:
Error: Invalid or unexpected token
- Example 3: Any integer number should be take as the parameter not any other number e.g- complex number.
<script>// Any integer number should be taken// as the dateString not word.varA =newDate("geeksforgeeks");document.write(A);</script>chevron_rightfilter_noneOutput:
Invalid Date
Application: It has many application such as for getting the exact current date and time. Below program prints the current date and time using the Date() object.
<script> // If nothing as parameter is given, it // represent the present date and time. var A = new Date(); // Printing present date and time. document.write(A); </script> |
Output:
Wed Mar 21 2018 20:44:40 GMT+0530 (India Standard Time)
Supported Browsers: The browsers supported by JavaScript Date are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- How to check the input date is equal to today's date or not using JavaScript ?
- How to convert UTC date time into local date time using JavaScript ?
- JavaScript | Adding minutes to Date object
- JavaScript Date toLocaleTimeString() Method
- JavaScript Date UTC() Method
- JavaScript Date getHours() Method
- JavaScript Date getMinutes() Method
- JavaScript Date getMonth() Method
- JavaScript Date getSeconds() Method
- JavaScript Date getDay() Method
- JavaScript Date getMilliseconds() Method
- JavaScript Date getFullYear() Method
- JavaScript Date getDate() Method
- JavaScript Date getUTCDate() Method
- JavaScript Date getUTCDay() Method
- JavaScript Date getUTCFullYear() Method
- JavaScript Date getUTCHours() Method
- JavaScript Date getUTCMilliseconds() Method
- JavaScript Date getUTCSeconds() Method
- JavaScript Date getUTCMinutes() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


