
Previously, the list was copied when constructing the FormData object, then the original list was passed to the event, meaning any changes to the list that happened within the event would not be reflected outside of it.
2 lines
84 B
Text
2 lines
84 B
Text
formData.get('field1') === 'value1': true
|
|
formData.get('field2') === 'value2': true
|