I have an ng-repeat which repeats two <li> s a particular number of time. I am also using the $index to see which index the outputted <li> is.
A sample is on this fiddle: http://jsfiddle.net/sh0ber/cHQLH
However, I need that one of the <li>s when using the index rather than outputting numbers like 1, 2, 3 etc, it outputs letters like A, B, C and so on.
Is there a way to do this in AngularJS? I am new to this.
EDIT:
I need that the output would be in the following way: C1, C2, C3.... B1, B2, B3.... A1, A2, A3...
i.e. the letters are descending.
Thanks