files/en-us/web/api/formdata/getall/index.md
{{APIRef("XMLHttpRequest API")}} {{AvailableInWorkers}}
The getAll() method of the {{domxref("FormData")}} interface returns all the values associated with a given key from within a FormData object.
getAll(name)
name
An array of values whose key matches the specified name. Otherwise, an empty list.
If we add two username values to a {{domxref("FormData")}} using {{domxref("FormData.append", "append()")}}:
formData.append("username", "Chris");
formData.append("username", "Bob");
The following getAll() method will return both username values in an array:
formData.getAll("username"); // Returns ["Chris", "Bob"]
{{Specifications}}
{{Compat}}