javascript convert unix timestamp to date code example
Example 1: unix time to date javascript
const unixTime = 1210981217;
const date = new Date(unixTime*1000);
console.log(date.toLocaleDateString("en-US"));
Example 2: javasctipt unix timestamp from date
Math.round(new Date().getTime() / 1000).toString()
Example 3: javascript date convert to unix
new Date('2012.08.10').getTime() / 1000
Example 4: convert date to unix timestamp javascript
new Date('2012.08.10').getTime() / 1000
new Date('2012.08.10').getTime()
Example 5: javascript timestamp to date
function timeConverter(UNIX_timestamp){
var a = new Date(UNIX_timestamp * 1000);
var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
var year = a.getFullYear();
var month = months[a.getMonth()];
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes();
var sec = a.getSeconds();
var time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + min + ':' + sec ;
return time;
}
console.log(timeConverter(0));