JSFiddle - React, Tailwind, and code Playground
by Alex Alex
HTML
<input type="file" multiple>
JavaScript
document.querySelector('input').addEventListener('change', function () {
alert(this.files[0].lastModifiedDate)
});
by Alex Alex
<input type="file" multiple>
document.querySelector('input').addEventListener('change', function () {
alert(this.files[0].lastModifiedDate)
});