I am trying to use FormData(). I have tried this code in Multiple versions of Chrome and Firefox.
var fData = new FormData();
fData.append('foo', 'bar');
console.log('formData', fData);
fData, when logged, only gives me the created object with a prototype of FormData and no additional "foo" value. There are no errors, it just seems to fail silently.
I have also tried
var fData = new FormData(formElement);