i have input
<input id="0_input_id"
onchange="input_change(0)"
name="files[]"
type="file"
required multiple
class="drop_zone_input">
and have function for delete
function delete_file(file_count, i, input_count)
{
const input = document.getElementById("0_input_id");
input.files[i] = undefined;
}
but this file doesn't delete, I cant use input.value = null because it clear all input, help to delete 1 file.