convert from timestamp to Date js code example

Example 1: convert timestamp to date javascript

javascriptCopyvar timestamp = 1607110465663
var date = new Date(timestamp);

console.log("Date: "+date.getDate()+
          "/"+(date.getMonth()+1)+
          "/"+date.getFullYear()+
          " "+date.getHours()+
          ":"+date.getMinutes()+
          ":"+date.getSeconds());

Example 2: convert datetime to timestamp javascript

function toTimestamp(strDate){ var datum = Date.parse(strDate); return datum/1000;}