Hi,
I’m getting an error when I try to use create a Javascript FormData object in preparation for posting to an API. I would have thought FormData would have been well supported.
console.log(`Hello, ${base.name}!`);
const endPoint = new URL('https://myserver.com/jsonAPI/');
const formData = new FormData();
formData.append("user", 'tom');
const response = await fetch(endPoint.toString(), {
method: "POST",
body: formData,
});
console.log(response)
Getting an error saying that FormData is not defined