I have to get the question number in this loop.
<div ng-repeat="quizqs in Quizdata.questions">
<li ng-click="form.goTo(Form, 1)">
<a href ng-class="{'selected' : currentStep >= 1, 'done' : currentStep > 1}">
<div class="stepNumber"> 1 </div>
<span class="stepDesc text-small">Question No {{quizqs.id}} - {{Quizdata_Lenght}}</span>
</a>
</li>
</div>