Skip to content

Instantly share code, notes, and snippets.

@tebriel
Created January 31, 2012 02:54
Show Gist options
  • Save tebriel/1708415 to your computer and use it in GitHub Desktop.
Save tebriel/1708415 to your computer and use it in GitHub Desktop.
function formatJSONTime(jsonTime){
var aa = jsonTime.substr(6);
var bb = parseInt(aa, 10);
var cc = new Date(bb);
var dd = formatTime(cc);
return dd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment