Skip to content

Instantly share code, notes, and snippets.

@Silambarasann
Created November 24, 2015 10:34
Show Gist options
  • Save Silambarasann/8acc9ace3534392326d2 to your computer and use it in GitHub Desktop.
Save Silambarasann/8acc9ace3534392326d2 to your computer and use it in GitHub Desktop.
Convert server time to local time javascript
function convertTime(serverdate) {
var date = new Date(serverdate);
// convert to utc time
var toutc = date.toUTCString();
//convert to local time
var locdat = new Date(toutc + " UTC");
return locdat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment