I am trying to append the data from two associative arrays I have so I can send it to my php file to then write to the server. I combined my two arrays by doing the following:
var allInputs = {... reqfields,... otherfields};
Up until here I am getting all the values I need and I am seeing them on my console but I don't know how to use the formData.append() for these types of arrays.