how I can delete value from FormData object with same name? I have HTML form with two input files.
if you're using jQuery you can use
$("#human").remove();
if you're using vanilla JS you can do the following
var human = document.getElementById('human'); human.parentNode.removeChild(human);