Answers for "how to get the epoch in javascrpit"

0

get current time epoch javascript

var a = Date.now();

// Returns miliseconds since epoch
Posted by: Guest on March-28-2020
1

epoch time js

let nowInMs = Date.now();
let nowInSecond = Math.round(nowInMs/1000);
console.log(nowInSecond); //
Posted by: Guest on May-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language