Javascript get current unix timestamp

Code examples

8
0

javascript timestamp in seconds

const ts = () => Math.floor(new Date().getTime() / 1000);
6
0

javasctipt unix timestamp from date

Math.round(new Date().getTime() / 1000).toString()
6
0

javascript get timestamp

var currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds
var currentTimeInMilliseconds=Date.now(); // unix timestamp in milliseconds
0
0

nodejs current timestamp unix

Math.floor(+new Date() / 1000)
0
0

unix timestamp js

+ new Date()
0
0

node js unix timestamp

function getUnixTime() {
  return (Date.now() / 1000) | 0;  
}

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................