Skip to content

Instantly share code, notes, and snippets.

@yukiarimo
Created December 2, 2022 21:30
Show Gist options
  • Save yukiarimo/7dab7df8eeccbd146f605d05b57f87e4 to your computer and use it in GitHub Desktop.
Save yukiarimo/7dab7df8eeccbd146f605d05b57f87e4 to your computer and use it in GitHub Desktop.
Unix time converter
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 time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + '00' ;
return time;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment