I have 8 to 10 checkboxes in my html. I need to send the checked checkboxes values to my typescript file.
<div>
<input type="checkbox" value="one" id="one" name="num">
<input type="checkbox" value="two" id="two" name="num">
<input type="checkbox" value="three" id="three" name="num">
<input type="checkbox" value="four" id="four" name="num">
</div>
How do I get all the selected checkboxes values in my ts file? Can somebody help me with this?
Reactive formsorTemplate driven forms, in your code nothing is there!!!