Tutorials References Menu

JS Tutorial

JS HOME JS Introduction JS Where To JS Output JS Statements JS Syntax JS Comments JS Variables JS Let JS Const JS Operators JS Arithmetic JS Assignment JS Data Types JS Functions JS Objects JS Events JS Strings JS String Methods JS String Search JS Numbers JS Number Methods JS Arrays JS Array Methods JS Array Sort JS Array Iteration JS Array Const JS Dates JS Date Formats JS Date Get Methods JS Date Set Methods JS Math JS Random JS Booleans JS Comparisons JS Conditions JS Switch JS Loop For JS Loop For In JS Loop For Of JS Loop While JS Break JS Typeof JS Type Conversion JS Bitwise JS RegExp JS Errors JS Scope JS Hoisting JS Strict Mode JS this Keyword JS Arrow Function JS Classes JS JSON JS Debugging JS Style Guide JS Best Practices JS Mistakes JS Performance JS Reserved Words

JS Objects

Object Definitions Object Properties Object Methods Object Display Object Accessors Object Constructors Object Prototypes Object Reference Object Map() Object Set()

JS Functions

Function Definitions Function Parameters Function Invocation Function Call Function Apply Function Closures

JS Classes

Class Intro Class Inheritance Class Static

JS Async

JS Callbacks JS Asynchronous JS Promises JS Async/Await

JS Versions

JS Versions JS 2009 (ES5) JS 2015 (ES6) JS 2016 JS 2017 JS 2018 JS IE / Edge JS History

JS HTML DOM

DOM Intro DOM Methods DOM Document DOM Elements DOM HTML DOM Forms DOM CSS DOM Animations DOM Events DOM Event Listener DOM Navigation DOM Nodes DOM Collections DOM Node Lists

JS Browser BOM

JS Window JS Screen JS Location JS History JS Navigator JS Popup Alert JS Timing JS Cookies

JS Web APIs

Web API Intro Web Forms API Web History API Web Storage API Web Worker API Web Fetch API Web Geolocation API

JS AJAX

AJAX Intro AJAX XMLHttp AJAX Request AJAX Response AJAX XML File AJAX PHP AJAX ASP AJAX Database AJAX Applications AJAX Examples

JS JSON

JSON Intro JSON Syntax JSON vs XML JSON Data Types JSON Parse JSON Stringify JSON Objects JSON Arrays JSON Server JSON PHP JSON HTML JSON JSONP

JS vs jQuery

jQuery Selectors jQuery HTML jQuery CSS jQuery DOM

JS Examples

JS Examples JS HTML DOM JS HTML Input JS HTML Objects JS HTML Events JS Browser JS Editor

JS References

JavaScript Objects HTML DOM Objects


JavaScript Date Objects


JavaScript Date Object lets us work with dates:

Example

const d = new Date();
Try it Yourself »

JavaScript Date Output

By default, JavaScript will use the browser's time zone and display a date as a full text string:

You will learn much more about how to display dates, later in this tutorial.


Creating Date Objects

Date objects are created with the new Date() constructor.

There are 4 ways to create a new date object:

new Date()
new Date(year, month, day, hours, minutes, seconds, milliseconds)
new Date(milliseconds)
new Date(date string)

new Date()

new Date() creates a new date object with the current date and time:

Example

const d = new Date();
Try it Yourself »

Date objects are static. The computer time is ticking, but date objects are not.


new Date(year, month, ...)

new Date(year, month, ...) creates a new date object with a specified date and time.

7 numbers specify year, month, day, hour, minute, second, and millisecond (in that order):

Example

const d = new Date(2018, 11, 24, 10, 33, 30, 0);
Try it Yourself »

Note: JavaScript counts months from 0 to 11.

January is 0. December is 11.

6 numbers specify year, month, day, hour, minute, second:

Example

const d = new Date(2018, 11, 24, 10, 33, 30);
Try it Yourself »

5 numbers specify year, month, day, hour, and minute:

Example

const d = new Date(2018, 11, 24, 10, 33);
Try it Yourself »

4 numbers specify year, month, day, and hour:

Example

const d = new Date(2018, 11, 24, 10);
Try it Yourself »

3 numbers specify year, month, and day:

Example

const d = new Date(2018, 11, 24);
Try it Yourself »

2 numbers specify year and month:

Example

const d = new Date(2018, 11);
Try it Yourself »

You cannot omit month. If you supply only one parameter it will be treated as milliseconds.

Example

const d = new Date(2018);
Try it Yourself »

Previous Century

One and two digit years will be interpreted as 19xx:

Example

const d = new Date(99, 11, 24);
Try it Yourself »

Example

const d = new Date(9, 11, 24);
Try it Yourself »

new Date(dateString)

new Date(dateString) creates a new date object from a date string:

Example

const d = new Date("October 13, 2014 11:13:00");
Try it Yourself »

Date strings are described in the next chapter.


JavaScript Stores Dates as Milliseconds

JavaScript stores dates as number of milliseconds since January 01, 1970, 00:00:00 UTC (Universal Time Coordinated).

Zero time is January 01, 1970 00:00:00 UTC.

Now the time is: milliseconds past January 01, 1970


new Date(milliseconds)

new Date(milliseconds) creates a new date object as zero time plus milliseconds:

Example

const d = new Date(0);
Try it Yourself »

01 January 1970 plus 100 000 000 000 milliseconds is approximately 03 March 1973:

Example

const d = new Date(100000000000);
Try it Yourself »

January 01 1970 minus 100 000 000 000 milliseconds is approximately October 31 1966:

Example

const d = new Date(-100000000000);
Try it Yourself »

Example

const d = new Date(86400000);
Try it Yourself »

One day (24 hours) is 86 400 000 milliseconds.



Date Methods

When a Date object is created, a number of methods allow you to operate on it.

Date methods allow you to get and set the year, month, day, hour, minute, second, and millisecond of date objects, using either local time or UTC (universal, or GMT) time.

Date methods and time zones are covered in the next chapters.


Displaying Dates

JavaScript will (by default) output dates in full text string format:

Try it Yourself »

When you display a date object in HTML, it is automatically converted to a string, with the toString() method.

Example

const d = new Date();
document.getElementById("demo").innerHTML = d;

Same as:

const d = new Date();
document.getElementById("demo").innerHTML = d.toString();
Try it Yourself »

The toUTCString() method converts a date to a UTC string (a date display standard).

Example

const d = new Date();
document.getElementById("demo").innerHTML = d.toUTCString();
Try it Yourself »

The toDateString() method converts a date to a more readable format:

Example

const d = new Date();
document.getElementById("demo").innerHTML = d.toDateString();
Try it Yourself »

The toISOString() method converts a date to a string, using the ISO standard format:

Example

const d = new Date();
document.getElementById("demo").innerHTML = d.toISOString();
Try it Yourself »