There are some great libraries out there to deal with dates in JavaScript, with Moment.js and date-fns being perhaps the two most popular. It’s very common however to have just some basic needs for playing with dates and using a library instead of the native JavaScript date object would be overkill. Let’s therefore explore what we can do natively using the date object.
Creating a new date instance is as easy as newing up a date object.
Without arguments, we get the current date and time in the local timezone:
You can also pass-in an integer for a date object that’s X amount of milliseconds after January 1st 1970 UTC:
You can also alternatively create a date object by passing a string:
Finally, you can create a date object in your local timezone using separate component argument:
Notice how the months are zero-based, and 5
therefore represents June. Components for time can be omitted and 0
will be assumed:
If you’re confused by the date returned when console logging a date object, remember that most browsers output the time in your local timezone.
Get a timestamp (number of milliseconds since Jan 1st 1970 UTC) using a date instance’s getTime method:
In the above example, we’re getting the timestamp for now
. This is so common that JavaScript now has a method to get just that more easily:
Timestamps are useful to easily calculate the difference in milliseconds between two dates. For example, here we get the difference in milliseconds between Feb 3rd 1996 and Jan 1 1970:
In the above case, you can ommit the call to getTime and the dates will automatically be coerced to timestamps:
Date object instances also give us a few useful methods to get human-friendly string representations. The toDateString, toTimeString, toLocaleDateString, toLocaleString, toLocaleTimeString and toUTCString methods are the most useful ones, and demonstrated in the following example:
You can get specific date/time components from a date instance using the following methods:
Here’s a simple example:
Note that all the above methods return date/time components in the local timezone. Each method has an equivalent so that UTC date/time is returned instead (e.g: getUTCMinutes()).
Similar to how we can get date/time components, we can also set them using analogous methods:
Note that there’s a shortcut where most of the set methods can take multiple arguments to set the other components. These two snippets produce the same result:
Using a combination of the get and set methods, you can add to or subtract from the date/time components of a date instance. Here for example, we add 15 minutes to the current time:
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Uhh