I wanna bring FormData to Console to check key and value.
var f = new FormData();
f.append('key1', 'value1');
console.log(f);
f = new FormData();
console.log(f); // I wanna know: Does f keep the key `key1` and value `value1`?
When I check in console, nowhere I can see the key and the value.
Can you give me some tip?