I\'ve tried console.log and looping through it using for in.
console.log
for in
Here it the MDN Reference on FormData.
Both attempts are in this fi
You have to understand that FormData::entries() returns an instance of Iterator.
FormData::entries()
Iterator
Take this example form:
Name Password
and this JS-loop: