unix timestamp javasvdipt code example
Example 1: javascript timestamp in seconds
const ts = () => Math.floor(new Date().getTime() / 1000);
Example 2: nodejs current timestamp unix
Math.floor(+new Date() / 1000)
const ts = () => Math.floor(new Date().getTime() / 1000);
Math.floor(+new Date() / 1000)