js get current timestamp in seconds code example
Example 1: angular get current timestamp
var currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds
var currentTimeInMilliseconds=Date.now(); // unix timestamp in milliseconds
Example 2: how to get seconds in timstamps js
var seconds = new Date().getTime() / 1000;