now unix timestamp js code example

Example 1: unix time to date javascript

const unixTime = 1210981217;
const date = new Date(unixTime*1000);
console.log(date.toLocaleDateString("en-US"));
//expected: "5/16/2008"

Example 2: how to get timestamp in javascript of a date object

new Date().getTime()

new Date().valueOf()

Example 3: angular get current timestamp

var currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds
var currentTimeInMilliseconds=Date.now(); // unix timestamp in milliseconds

Example 4: unix timestamp js

+ new Date()