const obj = { a: 1, b: 2, c: 3 } let formData = new FormData(); for(const i in obj) { formData.append(i, obj[i]); }