AngularJS Live Example

HTML

<script src="http://code.angularjs.org/0.10.5/angular-0.10.5.min.js" ng:autobind></script>

<script>
    function Ctrl() {
    } 

    Ctrl.prototype.getList = function() {
        return [{name:'John', age:25}, {name:'Mary', age:29}];
    };
</script>

<div ng:controller="Ctrl">
  I have {{getList().length}} friends. They are:
  <ul>
    <li ng:repeat="friend in getList()">
      [{{$index + 1}}] {{friend.name}} who is {{friend.age}} years old.
    </li>
  </ul>
</div>