excel to date
by toubia95
JavaScript
function ExcelDateToJSDate(date) {
return new Date(Math.round((date - 25569)*86400*1000));
}
var exceldate = 44196;
var jsdate = ExcelDateToJSDate(exceldate);
console.log(jsdate.getFullYear());
console.log(jsdate.getMonth()+1);
console.log(jsdate.getDate());
/* 31/12/2020 */