i search many things on this and try but all the options are return the modified date of file , but actually i want original Creation date of the file While file uploading
var reader = new FileReader();
var files = e.target.files;
var created_date = files[0].lastModifiedDate;
var name = files[0].name;
But this Line Is returning var created_date = files[0].lastModifiedDate;
Modified Date Of File
Please suggest Some options.....