<td><p><input class="checkbox" type="checkbox" value="Cars.id"> </p> </td>
This is list of cars id with checkbox.
<button (click)="duplicate()"><ion-icon name="color-wand"></ion-icon> </button>
on this button click i want to get value of all cars in my .ts file. here is the function in .ts
duplicate() {
var checkedValue = document.querySelector('.messageCheckbox:checked');
}