Html – Radio field not included in FormData.entries()
I am looping through FormData.entries() when performing form validation. However the entries do not include a radio button. The following is how I initialize my loop, and I have added the logging: for (let [fieldName, val] of formData.entries()) { console.log(fieldName);…