timestamp for date javascript code example
Example 1: javascript today date in epoch
const start = Date.now();
/*gives the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC.*/
Example 2: how to get the timestamp in javascript
const currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds