I am using Angular JS table ng repeat to display values
This is my code
<div ng-app="myapp" ng-controller="FirstCtrl">
<table border="1">
<tr>
<th ng-repeat="(key, val) in collectioninfo">{{ key }}</th>
</tr>
<tr ng-repeat="row in collectioninfo">
<td ng-repeat="(key, val2) in row">
{{ val2 }}
</td>
</tr>
</table>
</div>
var myapp = angular.module('myapp', []);
myapp.controller('FirstCtrl', function ($scope) {
$scope.collectioninfo = {
"SDDD": "Working",
"RRR": "P",
"DateCreated": "57:52.2"
}
});