files/en-us/web/api/formdata/append/index.md
{{APIRef("XMLHttpRequest API")}} {{AvailableInWorkers}}
The append() method of the {{domxref("FormData")}} interface appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
The difference between {{domxref("FormData.set", "set()")}} and append() is that if the specified key already exists, 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.
append(name, value)
append(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.append("username", "Chris");
When the value is a {{domxref("Blob")}} (or a {{domxref("File")}}), you can specify its name with the filename parameter:
formData.append("user-pic", myFileInput.files[0], "chris.jpg");
As with regular form data, you can append multiple values with the same name:
formData.append("user-pic", myFileInput.files[0], "chris1.jpg");
formData.append("user-pic", myFileInput.files[1], "chris2.jpg");
If the value is not a string or a Blob, append() will convert it to a string automatically:
formData.append("name", true);
formData.append("name", 72);
formData.getAll("name"); // ["true", "72"]
{{Specifications}}
{{Compat}}