Answers for "convert date now to timestamp javascript"

8

javascript current date time

var today = new Date().toLocaleDateString(undefined, {
    day: '2-digit',
    month: '2-digit',
    year: 'numeric',
    hour: '2-digit',
    minute: '2-digit',
    second: '2-digit'
})
Posted by: Guest on April-07-2020
2

how to get the timestamp in javascript

const currentTimeInMilliseconds=Date.now(); // unix timestamp in milliseconds
Posted by: Guest on April-22-2020
0

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'));
Posted by: Guest on February-12-2021

Code answers related to "convert date now to timestamp javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language