What is the correct way to insert the {{c.id}} argument into the function instead of hardcoding it as 32?
<tr *ngFor="let c of myService.companyList">
<td>{{c.name}}</td>
<td>{{c.email}}</td>
<td>{{c.password}}</td>
<td> <input type="submit" value="click to remove" (click)="removeCompany(32)" (click)=/> </td>
<td> <a href="">Click here to remove this company {{c.id}}</a></td>
</tr>