Answers for "javascript unixdate time converter"

17

unix time to date javascript

const unixTime = 1210981217;
const date = new Date(unixTime*1000);
console.log(date.toLocaleDateString("en-US"));
//expected: "5/16/2008"
Posted by: Guest on May-20-2020
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'));
Posted by: Guest on March-24-2021

Code answers related to "javascript unixdate time converter"

Code answers related to "Javascript"

Browse Popular Code Answers by Language