Angular Js - Example - List Item using ng-repeat

Angular Js - Example Directive: ng-repeat Repeat the json data

HTML

<h3>FIFA Mactch Summary:</h3>
<div ng-app ng-controller="MyCtrl as ctrl">
    <ul>
        <li ng-repeat="(country,goals) in ctrl.items">{{country}}: {{goals}}</li>
    </ul>
</div>

JavaScript

var m = {
    "India": "2",
    "England": "2",
    "Brazil": "3",
    "UK": "1",
    "USA": "3",
    "Syria": "2"
};

    this.items = m;
}