This seems like something with a really easy fix, but I can't figure it out. I have the following in the Google Developer console:
var formData = new FormData();
formData.append("a", "b")
console.log(formData)
FormData {}
Why is the FormData object still empty even after adding a key and value to it?