Как засунуть в if состояние type="radio" в виде checked?
Ранее у меня это работало так:
if (document.getElementById('radiobutton').checked) {
user_choice = "EAGLE";
console.log(user_choice);
return;
}
if (document.getElementById('radiobutton2').checked) {
user_choice = "TAILS";
console.log(user_choice);
return;
} else {
user_choice = null;
Сейчас хочу исправить на конструкцию вида
const user_choice = document.getElementById('radiobutton').checked=true ? user_choice = "EAGLE" : user_choice = "TAILS";