Angular Learning
<table>
<thead>
<tr>
<th ng-repeat="col in ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']">{{ col }}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="i in [1, 2, 3, 4, 5, 6, 7, 8]">
<td ng-repeat="col in ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']">{{col + i}}</td>
</tr>
</tbody>
</table>