dayjs get current unix timestamp code example
Example 1: javasctipt unix timestamp from date
Math.round(new Date().getTime() / 1000).toString()
Example 2: How to get unix timestamp from tomorrow nodejs
var d = new Date();
d.setDate(d.getDay() - 1);
d.setHours(0, 0, 0);
d.setMilliseconds(0);
console.log(d/1000|0)
Example 3: node get unix timestamp
Math.floor(new Date() / 1000) // in seconds
Example 4: nodejs current timestamp unix
Math.floor(+new Date() / 1000)