The append() method of the FormData interface appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
append() 메소드는 이미 존재한 게 아니라면 formData 객체 내부의 기존의 키에 새로운 값을 붙여 넣거나 더한다.
The FormData interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the fetch() method. It uses the same format a form would use if the encoding type were set to .....
FormData 인터페이스는 필드와 값을 나타내는 키/밸류의 세트를 만드는 방법이며, 패치 메소드를 활용하여 보낼 수 있다.
FormData objects are used to capture HTML form and submit it using fetch or another network method.
FormData objects can help sending HTML forms.
let formData = new FormData([form]);