Skip to content

Instantly share code, notes, and snippets.

View scottschreckengaust's full-sized avatar
🏄‍♂️
I may be slow to respond.

Scott Schreckengaust scottschreckengaust

🏄‍♂️
I may be slow to respond.
View GitHub Profile
// Convert Excel dates into JS date objects
//
// @param excelDate {Number}
// @return {Date}
function getJsDateFromExcel(excelDate) {
// JavaScript dates can be constructed by passing milliseconds
// since the Unix epoch (January 1, 1970) example: new Date(12312512312);