js timestmp code example
Example 1: how to get timestamp in javascript of a date object
new Date().getTime()
new Date().valueOf()
Example 2: javascript today date in epoch
const start = Date.now();
/*gives the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC.*/