how to uncheck one checkbox in javascript using id code example
Example: uncheck checkbox based on id js
const checkBox = doument.getElementById(id);
checkBox.checked = false;
const checkBox = doument.getElementById(id);
checkBox.checked = false;