Whenever I execute the following code snippet:
var formData = new FormData();
formData.append("key", "value");
console.log("Form data: " + JSON.stringify(formData)); // Testing
I notice empty braces being displayed in the console. Can anyone explain why this is happening?