The FormData.entries()
method returns an iterator which iterates through all key/value pairs contained in the FormData
. The key of each pair is a string object, and the value is either a string or a Blob
.
Note: This method is available in Web Workers.