I'm using this code to read an excel file and convert it to a JSON Object, but the issue here is that this code read cells that contain date as an integer number
var ExcelToJSON = function () {
this.parseExcel = function (file) {
    var reader = new FileReader();
    reader.onload = function (e) {
        var data = e.target.result;
        var workbook = XLSX.read(data, {
            type: 'binary'
        });
        workbook.SheetNames.forEach(function (sheetName) {
            // Here is your object
            var XL_row_object = XLSX.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]);
            var json_object = JSON.stringify(XL_row_object);
            console.log(JSON.parse(json_object));
            parse(JSON.parse(json_object));
            jQuery('#xlx_json').val(json_object);
        })
    };
    reader.onerror = function (ex) {
        console.log(ex);
    };
    reader.readAsBinaryString(file);
}};
Can anyone help me how to get the date right?
 
    