- Javascript Basics Tutorial
- Javascript - Home
- JavaScript - Overview
- JavaScript - Features
- JavaScript - Enabling
- JavaScript - Placement
- JavaScript - Syntax
- JavaScript - Hello World
- JavaScript - Console.log()
- JavaScript - Comments
- JavaScript - Variables
- JavaScript - let Statement
- JavaScript - Constants
- JavaScript - Data Types
- JavaScript - Type Conversions
- JavaScript - Strict Mode
- JavaScript - Reserved Keywords
- JavaScript Operators
- JavaScript - Operators
- JavaScript - Arithmetic Operators
- JavaScript - Comparison Operators
- JavaScript - Logical Operators
- JavaScript - Bitwise Operators
- JavaScript - Assignment Operators
- JavaScript - Conditional Operators
- JavaScript - typeof Operator
- JavaScript - Nullish Coalescing Operator
- JavaScript - Delete Operator
- JavaScript - Comma Operator
- JavaScript - Grouping Operator
- JavaScript - Yield Operator
- JavaScript - Spread Operator
- JavaScript - Exponentiation Operator
- JavaScript - Operator Precedence
- JavaScript Control Flow
- JavaScript - If...Else
- JavaScript - While Loop
- JavaScript - For Loop
- JavaScript - For...in
- Javascript - For...of
- JavaScript - Loop Control
- JavaScript - Break Statement
- JavaScript - Continue Statement
- JavaScript - Switch Case
- JavaScript - User Defined Iterators
- JavaScript Functions
- JavaScript - Functions
- JavaScript - Function Expressions
- JavaScript - Function Parameters
- JavaScript - Default Parameters
- JavaScript - Function() Constructor
- JavaScript - Function Hoisting
- JavaScript - Self-Invoking Functions
- JavaScript - Arrow Functions
- JavaScript - Function Invocation
- JavaScript - Function call()
- JavaScript - Function apply()
- JavaScript - Function bind()
- JavaScript - Closures
- JavaScript - Variable Scope
- JavaScript - Global Variables
- JavaScript - Smart Function Parameters
- JavaScript Objects
- JavaScript - Number
- JavaScript - Boolean
- JavaScript - Strings
- JavaScript - Arrays
- JavaScript - Date
- JavaScript - DataView
- JavaScript - Math
- JavaScript - RegExp
- JavaScript - Symbol
- JavaScript - Sets
- JavaScript - WeakSet
- JavaScript - Maps
- JavaScript - WeakMap
- JavaScript - Iterables
- JavaScript - Reflect
- JavaScript - TypedArray
- JavaScript - Template Literals
- JavaScript - Tagged Templates
- Object Oriented JavaScript
- JavaScript - Objects
- JavaScript - Classes
- JavaScript - Object Properties
- JavaScript - Object Methods
- JavaScript - Static Methods
- JavaScript - Display Objects
- JavaScript - Object Accessors
- JavaScript - Object Constructors
- JavaScript - Native Prototypes
- JavaScript - ES5 Object Methods
- JavaScript - Encapsulation
- JavaScript - Inheritance
- JavaScript - Abstraction
- JavaScript - Polymorphism
- JavaScript - Destructuring Assignment
- JavaScript - Object Destructuring
- JavaScript - Array Destructuring
- JavaScript - Nested Destructuring
- JavaScript - Optional Chaining
- JavaScript - Global Object
- JavaScript - Mixins
- JavaScript - Proxies
- JavaScript Versions
- JavaScript - History
- JavaScript - Versions
- JavaScript - ES5
- JavaScript - ES6
- ECMAScript 2016
- ECMAScript 2017
- ECMAScript 2018
- ECMAScript 2019
- ECMAScript 2020
- ECMAScript 2021
- ECMAScript 2022
- JavaScript Cookies
- JavaScript - Cookies
- JavaScript - Cookie Attributes
- JavaScript - Deleting Cookies
- JavaScript Browser BOM
- JavaScript - Browser Object Model
- JavaScript - Window Object
- JavaScript - Document Object
- JavaScript - Screen Object
- JavaScript - History Object
- JavaScript - Navigator Object
- JavaScript - Location Object
- JavaScript - Console Object
- JavaScript Web APIs
- JavaScript - Web API
- JavaScript - History API
- JavaScript - Storage API
- JavaScript - Forms API
- JavaScript - Worker API
- JavaScript - Fetch API
- JavaScript - Geolocation API
- JavaScript Events
- JavaScript - Events
- JavaScript - DOM Events
- JavaScript - addEventListener()
- JavaScript - Mouse Events
- JavaScript - Keyboard Events
- JavaScript - Form Events
- JavaScript - Window/Document Events
- JavaScript - Event Delegation
- JavaScript - Event Bubbling
- JavaScript - Event Capturing
- JavaScript - Custom Events
- JavaScript Error Handling
- JavaScript - Error Handling
- JavaScript - try...catch
- JavaScript - Debugging
- JavaScript - Custom Errors
- JavaScript - Extending Errors
- JavaScript Important Keywords
- JavaScript - this Keyword
- JavaScript - void Keyword
- JavaScript - new Keyword
- JavaScript - var Keyword
- JavaScript HTML DOM
- JavaScript - HTML DOM
- JavaScript - DOM Methods
- JavaScript - DOM Document
- JavaScript - DOM Elements
- JavaScript - DOM Forms
- JavaScript - Changing HTML
- JavaScript - Changing CSS
- JavaScript - DOM Animation
- JavaScript - DOM Navigation
- JavaScript - DOM Collections
- JavaScript - DOM Node Lists
- JavaScript Miscellaneous
- JavaScript - Ajax
- JavaScript - Async Iteration
- JavaScript - Atomics Objects
- JavaScript - Rest Parameter
- JavaScript - Page Redirect
- JavaScript - Dialog Boxes
- JavaScript - Page Printing
- JavaScript - Validations
- JavaScript - Animation
- JavaScript - Multimedia
- JavaScript - Image Map
- JavaScript - Browsers
- JavaScript - JSON
- JavaScript - Multiline Strings
- JavaScript - Date Formats
- JavaScript - Get Date Methods
- JavaScript - Set Date Methods
- JavaScript - Modules
- JavaScript - Dynamic Imports
- JavaScript - BigInt
- JavaScript - Blob
- JavaScript - Unicode
- JavaScript - Shallow Copy
- JavaScript - Call Stack
- JavaScript - Reference Type
- JavaScript - IndexedDB
- JavaScript - Clickjacking Attack
- JavaScript - Currying
- JavaScript - Graphics
- JavaScript - Canvas
- JavaScript - Debouncing
- JavaScript - Performance
- JavaScript - Style Guide
- JavaScript Useful Resources
- JavaScript - Questions And Answers
- JavaScript - Quick Guide
- JavaScript - Functions
- JavaScript - Resources
JavaScript - The Date Object
The Date object is a datatype built into the JavaScript language. Date objects are created with the new Date( ) as shown below.
Once a Date object is created, a number of methods allow you to operate on it. Most methods simply allow you to get and set the year, month, day, hour, minute, second, and millisecond fields of the object, using either local time or UTC (universal, or GMT) time.
The ECMAScript standard requires the Date object to be able to represent any date and time, to millisecond precision, within 100 million days before or after 1/1/1970. This is a range of plus or minus 273,785 years, so JavaScript can represent date and time till the year 275755.
Syntax
You can use any of the following syntaxes to create a Date object using Date() constructor.
new Date( ) new Date(milliseconds) new Date(datestring) new Date(year,month,date[,hour,minute,second,millisecond ])
Note − Parameters in the brackets are always optional.
Parameters
Here is a description of the parameters −
No Argument − With no arguments, the Date() constructor creates a Date object set to the current date and time.
milliseconds − When one numeric argument is passed, it is taken as the internal numeric representation of the date in milliseconds, as returned by the getTime() method. For example, passing the argument 5000 creates a date that represents five seconds past midnight on 1/1/70.
datestring − When one string argument is passed, it is a string representation of a date, in the format accepted by the Date.parse() method.
7 agruments − To use the last form of the constructor shown above. Here is a description of each argument −
year − Integer value representing the year. For compatibility (in order to avoid the Y2K problem), you should always specify the year in full; use 1998, rather than 98.
month − Integer value representing the month, beginning with 0 for January to 11 for December.
date − Integer value representing the day of the month.
hour − Integer value representing the hour of the day (24-hour scale).
minute − Integer value representing the minute segment of a time reading.
second − Integer value representing the second segment of a time reading.
millisecond − Integer value representing the millisecond segment of a time reading.
Return value
It returns the date string containing day, month, date, year, hours, minutes, seconds, and timezone.
Date Properties
Here is a list of the properties of the Date object along with their description.
Sr.No. | Property & Description |
---|---|
1 | constructor
Specifies the function that creates an object's prototype. |
2 | prototype
The prototype property allows you to add properties and methods to an object |
In the following sections, we will have a few examples to demonstrate the usage of different Date properties.
Date Methods
Here is a list of the methods used with Date and their description.
Sr.No. | Method & Description |
---|---|
1 | Date()
Returns today's date and time |
2 | getDate()
Returns the day of the month for the specified date according to local time. |
3 | getDay()
Returns the day of the week for the specified date according to local time. |
4 | getFullYear()
Returns the year of the specified date according to local time. |
5 | getHours()
Returns the hour in the specified date according to local time. |
6 | getMilliseconds()
Returns the milliseconds in the specified date according to local time. |
7 | getMinutes()
Returns the minutes in the specified date according to local time. |
8 | getMonth()
Returns the month in the specified date according to local time. |
9 | getSeconds()
Returns the seconds in the specified date according to local time. |
10 | getTime()
Returns the numeric value of the specified date as the number of milliseconds since January 1, 1970, 00:00:00 UTC. |
11 | getTimezoneOffset()
Returns the time-zone offset in minutes for the current locale. |
12 | getUTCDate()
Returns the day (date) of the month in the specified date according to universal time. |
13 | getUTCDay()
Returns the day of the week in the specified date according to universal time. |
14 | getUTCFullYear()
Returns the year in the specified date according to universal time. |
15 | getUTCHours()
Returns the hours in the specified date according to universal time. |
16 | getUTCMilliseconds()
Returns the milliseconds in the specified date according to universal time. |
17 | getUTCMinutes()
Returns the minutes in the specified date according to universal time. |
18 | getUTCMonth()
Returns the month in the specified date according to universal time. |
19 | getUTCSeconds()
Returns the seconds in the specified date according to universal time. |
20 | getYear()
Deprecated - Returns the year in the specified date according to local time. Use getFullYear instead. |
21 | setDate()
Sets the day of the month for a specified date according to local time. |
22 | setFullYear()
Sets the full year for a specified date according to local time. |
23 | setHours()
Sets the hours for a specified date according to local time. |
24 | setMilliseconds()
Sets the milliseconds for a specified date according to local time. |
25 | setMinutes()
Sets the minutes for a specified date according to local time. |
26 | setMonth()
Sets the month for a specified date according to local time. |
27 | setSeconds()
Sets the seconds for a specified date according to local time. |
28 | setTime()
Sets the Date object to the time represented by a number of milliseconds since January 1, 1970, 00:00:00 UTC. |
29 | setUTCDate()
Sets the day of the month for a specified date according to universal time. |
30 | setUTCFullYear()
Sets the full year for a specified date according to universal time. |
31 | setUTCHours()
Sets the hour for a specified date according to universal time. |
32 | setUTCMilliseconds()
Sets the milliseconds for a specified date according to universal time. |
33 | setUTCMinutes()
Sets the minutes for a specified date according to universal time. |
34 | setUTCMonth()
Sets the month for a specified date according to universal time. |
35 | setUTCSeconds()
Sets the seconds for a specified date according to universal time. |
36 | setYear()
Deprecated - Sets the year for a specified date according to local time. Use setFullYear instead. |
37 | toDateString()
Returns the "date" portion of the Date as a human-readable string. |
38 | toGMTString()
Deprecated - Converts a date to a string, using the Internet GMT conventions. Use toUTCString instead. |
39 | toLocaleDateString()
Returns the "date" portion of the Date as a string, using the current locale's conventions. |
40 | toLocaleFormat()
Converts a date to a string, using a format string. |
41 | toLocaleString()
Converts a date to a string, using the current locale's conventions. |
42 | toLocaleTimeString()
Returns the "time" portion of the Date as a string, using the current locale's conventions. |
43 | toSource()
Returns a string representing the source for an equivalent Date object; you can use this value to create a new object. |
44 | toString()
Returns a string representing the specified Date object. |
45 | toTimeString()
Returns the "time" portion of the Date as a human-readable string. |
46 | toUTCString()
Converts a date to a string, using the universal time convention. |
47 | valueOf()
Returns the primitive value of a Date object. |
Converts a date to a string, using the universal time convention.
Date Static Methods
In addition to the many instance methods listed previously, the Date object also defines two static methods. These methods are invoked through the Date() constructor itself.
Sr.No. | Method & Description |
---|---|
1 | Date.parse( )
Parses a string representation of a date and time and returns the internal millisecond representation of that date. |
2 | Date.UTC( )
Returns the millisecond representation of the specified UTC date and time. |
In the following sections, we will have a few examples to demonstrate the usages of Date Static methods.
Examples
Example: Creating JavaScript Date Object
In the example below, we create a new instance of the date object. In the output, you can observe that it returns the current time.
<html> <head> <title> JavaScript - Date object </title> </head> <body> <p id = "output"> </p> <script> const date = new Date(); document.getElementById("output").innerHTML = "Today's date is : " + date; </script> </body> </html>
If we execute the above program, it returns the current time.
Example: Setting up custom date
In the example below, we have passed the custom date string as a parameter of the Date() constructor to create a custom date.
The Date() constructor returns the standard date string, which you can see in the output.
<html> <head> <title> JavaScript - Date object </title> </head> <body> <p id = "output"> </p> <script> const date = new Date("August 19, 2024 09:30:54"); document.getElementById("output").innerHTML = "The custom date is : " + date; </script> </body> </html>
If we execute the above program, it returns the custom time as provided.
Example: Passing argument in milliseconds
In the example below, we have passed milliseconds as an argument of the Date() constructor. If you pass the positive milliseconds as an argument, the object returns the date according to the 1st January 1970 00:00:00 + milliseconds.
Otherwise, it returns the date according to the 1st January 1970 00:00:00 – milliseconds if negative milliseconds passed as an argument.
<html> <head> <title> JavaScript - Date object </title> </head> <body> <p id = "output"> </p> <script> const output = document.getElementById("output"); let date = new Date(999999999999); output.innerHTML += "The Date after 1st January, 1970 is - " + date + "<br>"; date = new Date(-999999999999); output.innerHTML += "The Date before 1st January, 1970 is - " + date; </script> </body> </html>
It returns the date after 1st January, 1970 and before 1st January, 1970 as result.
Example: Constructing a date from 7 arguments
In the example below, we have passed the year, month, date, hour, minute, second, and millisecond as a Date() constructor argument. The Date() constructor returns the full date string, which you can see in the output.
<html> <head> <title> JavaScript - Date object </title> </head> <body> <p id = "output"> </p> <script> const date = new Date(2001, 5, 14, 6, 43, 58, 342); document.getElementById("output").innerHTML = "The custom date is : " + date; </script> </body> </html>
If we execute the above program, it returns the custom time as provided.
However, you can use the different methods of the Date object to format the date string. Let’s look at the example below.
Example: Formatting a date string
In the example below, three different methods are used to format the date string.
The toDateString() method extracts the date only from the date string and removes the time part.
The toISOString() method converts the date string into the ISO format.
The toUTCString() method converts the date string into the UTC time format.
<html> <head> <title> JavaScript - Formatting the date </title> </head> <body> <p id = "output"> </p> <script> const date = new Date(999999999999); document.getElementById("output").innerHTML += "The Date after 1st January, 1970 is: " + date.toDateString() + "<br>"+ "The Date after 1st January, 1970 is: " + date.toISOString() + "<br>"+ "The Date after 1st January, 1970 is: " + date.toUTCString(); </script> </body> </html>
It will return the ouptut of the above provided methods, respectively.