Home

Published

- 1 min read

formdata javascript console.log

img of formdata javascript console.log

The solution for this is noted below

formdata javascript console.log

Solution

   // Create a test FormData object
var formData = new FormData()
formData.append('key1', 'value1')
formData.append('key2', 'value2')

// Display the key/value pairs
for (var pair of formData.entries()) {
	console.log(pair[0] + ', ' + pair[1])
}

Try other methods by searching on the site. That is if this doesn’t work