Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

unix time to date javascript

const unixTime = 1210981217;
const date = new Date(unixTime*1000);
console.log(date.toLocaleDateString("en-US"));
//expected: "5/16/2008"
Source by en.wikipedia.org #
 
PREVIOUS NEXT
Tagged: #unix #time #date #javascript
ADD COMMENT
Topic
Name
5+7 =