I have this code that increment the number "count":
<button ng-click="count = count + 1" ng-init="count=0">
Increment
</button>
<span>
count: {{count}}
</span>
And I want the number "count" control det index of this list:
<p>@month.get({{count}})</p>
But this way isn't work..