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
ES6+ solutions:
To see the structure of form data:
console.log([...formData])
To see each key-value pair:
for (let [key, value] of formData.entries()) { console.log(`${key}: ${value}`); }