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
Easy Method
I used this code in angular 8
var formData = new FormData(); formData.append('key1', 'value1'); formData.append('key2', 'value2'); formData.forEach((value,key) => { console.log(key+value) });