FormData.entries()
The entries()
method of the FormData
interface returns an iterator allowing iteration through all key/value pairs contained in this object. The iterator yields a new array for each key/value pair, with the first element being the key and the second element being the value.
Syntax
entries()
Return value
An iterator
.