I have this javascript code to uncheck the radio button which is working fine
function uncheckRadio(){
const radioBtns = document.querySelectorAll('input[name="choices"]');
for(const btn of radioBtns){
if(btn.checked){
btn.checked = false;
}
}
}
What would this function look like if rewritten into jQuery?