start checkboxes selected js code example
Example 1: get the state of a checkbox
function checkAddress()
{
var chkBox = document.getElementById('checkAddress');
if (chkBox.checked)
{
// ..
}
}
Example 2: how to check if input is checked javascript
const cb = document.getElementById('accept');
console.log(cb.checked);