Languages
[Edit]
EN

JavaScript - get current time in milliseconds

3 points
Created by:
Anisha-Kidd
652

In this article, we would like to show you how to get the current time in milliseconds in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

const time = Date.now();

console.log(time);

or: 

// ONLINE-RUNNER:browser;

const getCurrentTime = () => {
    const date = new Date();
    return date.getTime();
};


// Usage example:

const time = getCurrentTime();

console.log(time);

The above solutions return the current time in milliseconds since Unix Epoch (January 1, 1970). 

Alternative titles

  1. JavaScript - todays' time in milliseconds
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join