.HTML File : I encountered an error saying, "Identifier 'mg' is not defined." However, {{mgr[0].value}} works
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="bottom" data-html="true"
title="<table class='popuptable'>
<thead>
<tr >
<th>Current Value</th>
</tr>
</thead>
<tbody>
<tr *ngFor='let mg of mgr'>
<td>{{mg.value}}
</tr>
</tbody>
</table>">
Tooltip on bottom
</button>
.ts file : In my attempt to loop through the 'mgr' array using *ngFor in the .HTML file
mgr: any[]=[{
value:'Work 1'
},
{
value:'Work 2'
}
];