I am outputting a list in angular from an object.
The object can contain anywhere from 0 - 100 items and the design I have to work to use the word for the numbers as the list item name.
E.g. currently:
<li ng-repeat="result in results">
{{ $index }}
</li>
Will return 0,1,2,3 etc. But I need to instead show one, two, three...
Is there a simple way of doing this?