I am getting a Javascript object req.files . This object can have multiple files under it. req.files is an object and not an array.
So of if user adds three files, the object will look like:
req.files.file0
req.files.file1
req.files.file2
where file0, file1 etc is another object.
User can add upto 15 files. How can I check loop over such objects & read information from req.files.fileX ? I need to support IE 11 & chrome.
req.files["file" + i]