how to get epochin js code example
Example 1: get current time epoch javascript
var a = Date.now();
// Returns miliseconds since epoch
Example 2: epoch time js
let nowInMs = Date.now();
let nowInSecond = Math.round(nowInMs/1000);
console.log(nowInSecond); //