guneysus
10/18/2015 - 9:33 AM

Angular Learning

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>