I work with FormData, while my code works well in Chrome, Microsoft Edge spits out the following error message Object doesn't support property or method 'entries'- which corresponds to the following code:
for(let pair of formData.entries()) {
...
}
I tried replacing .entries()with .getAll(), however, Microsoft Edge does not recognize either of both methods.
Is there any way to get this functionality (iterate over files FormData) from Microsoft Edge?
Microsoft Edge Console Dump for FormData strong>

source
share