JavaScript Date setTime()
Example
Add 1332403882588 milliseconds to January 1, 1970:
const d = new Date();
d.setTime(1332403882588);
Try it Yourself »
More "Try it Yourself" examples below.
Description
The setTime()
method sets a date and time by adding or subtracting a specified number of milliseconds to/from midnight January 1, 1970.
Syntax
Date.setTime(millisec)
Parameter Values
Parameter | Description |
---|---|
millisec | Required. The number of milliseconds to be added to, or subtracted from, midnight January 1, 1970 |
Return Value
NONE
Changes the Date object in place. |
More Examples
Example
Subtract 1332403882588 milliseconds from January 1, 1970:
const d = new Date();
d.setTime(-1332403882588);
Try it Yourself »
Browser Support
setTime()
is an ECMAScript1 (JavaScript 1997) feature.
It is supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |