how to get the value of the radio button class using DOM code example
Example: get radio button value javascript
document.querySelector('input[name="rate"]:checked').value;
document.querySelector('input[name="rate"]:checked').value;