Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Last active August 29, 2015 14:23
Show Gist options
  • Save johnmurch/b56216aa351042b4e9b8 to your computer and use it in GitHub Desktop.
Save johnmurch/b56216aa351042b4e9b8 to your computer and use it in GitHub Desktop.
Excel Date to Javascript
function ExcelDateToJSDate(date) {
return new Date((date - (25567 + 1))*86400*1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment