Languages
[Edit]
EN

TypeScript - get UNIX timestamp in milliseconds

0 points
Created by:
Imaan-Morin
1009

In this short article, we would like to show how to get unix timstamp in milliseconds in TypeScript.

Note: as unix timestamp in this article we understans bash date +%s%3N command result.

Quick solution:

const now: number = Date.now();

console.log(now); // Example output: 1648547761676

 

Reusable source code

const getTimestamp = (): number => {
    return Date.now();
};


// Usage example:

const now: number = getTimestamp();

console.log(now);

Example output:

1648547787253

See also

  1. JavaScript - get UNIX timestamp 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