change checkbox input value js code example
Example 1: jquery on checkbox checked es6
$("input[type='checkbox']").on('change', (e) => {
console.log("Checked Value 'is' :: ", e.currentTarget.checked);
})
Example 2: how to check if input is checked javascript
const cb = document.getElementById('accept');
console.log(cb.checked);