I am having multiple checkbox as follows
moduleNameList = ['test1', 'test2', 'test3', 'test4']
<li *ngFor="let module of moduleNameList">
<input [value]="module" type="checkbox"> {{module}}<br>
</li>
User can click on any check box, finally once he click on a button I want to know what are values user checked. Can any one help me on this? Click here to see the check boxes with button