Languages
[Edit]
EN

TypeScript - get UNIX timestamp in seconds

0 points
Created by:
James-Z
767

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

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

Quick solution:

const getTimestamp = (): number => {
    const now = Date.now();
    return Math.floor(0.001 * now);
};


// Usage example:

const now: number = getTimestamp();

console.log(now);

Example output:

1648547546

See also

  1. JavaScript - get UNIX timestamp in seconds

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