I\'ve tried console.log and looping through it using for in.
Here it the MDN Reference on FormData.
Both attempts are in this fi
in typeScript of angular 6, this code is working for me.
var formData = new FormData();
formData.append('name', 'value1');
formData.append('name', 'value2');
console.log(formData.get('name')); // this is return first element value.
or for all values:
console.log(formData.getAll('name')); // return all values