how am I able to do this? I am building a system which I can mark multiple checkbox then delete them simultaneously.
html
<input type="checkbox" (click)="selChk(member.id)">
component
selChk(val) {
let id = [];
let ids = id.push(val);
console.log(ids);
}
I like to output like this:
["0","1","2","3","4","5"]