convert date to timestamp javascript code example

Example 1: js timestamp

var timestamp = new Date().getTime();

Example 2: javasctipt unix timestamp from date

Math.round(new Date().getTime() / 1000).toString()

Example 3: convert date to timestamp javascript

//  human date --> timestamp

function toTimestamp(strDate){
   var datum = Date.parse(strDate);
   return datum/1000;
}
alert(toTimestamp('02/13/2009 23:31:30'));

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

new Date().getTime()

new Date().valueOf()

Example 5: javascript get timestamp

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

Example 6: convert date to timestamp javascript

const toTimestamp=(strDate)=>{
   var datum = Date.parse(strDate);
   return datum/1000;
}
console.log(toTimestamp('02/13/2009 23:31:30'));