Skip to content

Instantly share code, notes, and snippets.

@shamsher31
Created July 8, 2015 04:56
Show Gist options
  • Save shamsher31/542905f83d29f8a302ea to your computer and use it in GitHub Desktop.
Save shamsher31/542905f83d29f8a302ea to your computer and use it in GitHub Desktop.
Javascript UTC time from Timestamp
function getUTCTimeFromTimeStamp(timestamp) {
var currentTime = new Date(timestamp),
unixTime = new Date(
currentTime.getUTCFullYear(),
currentTime.getUTCMonth(),
currentTime.getUTCDate(),
currentTime.getUTCHours(),
currentTime.getUTCMinutes(),
currentTime.getUTCSeconds()
);
return unixTime.getTime();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment