AngularJS Example:

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app ng-controller="MyCtrl">
    <table>
        <tr ng-repeat="row in tableDatas">
          <td ng-repeat="column in row ">{{column}} | </td>
        </tr>
    </table>
</div>

JavaScript

function MyCtrl($scope) {
    $scope.tableDatas = [["1","12","34"],["0","18","12"],["1","7","3"],["1","2","3"],["2","1","3"],["10","1","4"]] ;
}