files/en-us/web/api/formdata/set/index.md
{{APIRef("XMLHttpRequest API")}} {{AvailableInWorkers}}
The set() method of the {{domxref("FormData")}} interface sets a new value for an existing key inside a FormData object, or adds the key/value if it does not already exist.
The difference between set() and {{domxref("FormData.append", "append()")}} is that if the specified key does already exist, set() will overwrite all existing values with the new one, whereas append() will append the new value onto the end of the existing set of values.
set(name, value)
set(name, value, filename)
name
value.value
filename {{optional_inline}}
[!NOTE] If you specify a {{domxref("Blob")}} as the data to append to the
FormDataobject, the filename that will be reported to the server in the "Content-Disposition" header used to vary from browser to browser.
None ({{jsxref("undefined")}}).
formData.set("username", "Chris");
When the value is a {{domxref("Blob")}} (or a {{domxref("File")}}), you can specify its name with the filename parameter:
formData.set("user-pic", myFileInput.files[0], "chris.jpg");
If the value is not a string or a Blob, set() will convert it to a string automatically:
formData.set("name", 72);
formData.get("name"); // "72"
{{Specifications}}
{{Compat}}