Suppose, I have :
$scope.head1="abc";
$scope.head2="bfc";
...
...
$scope.head12="bfc";
and, I do this :
<div ng-repeat="count in [3,4,5,6,7,8,9,10,11,12]" class="padding-top-10">
<span>{{head + count}}</span>
</div>
I want to get the values of head1, head2, head3.. head12 in the div. How to do that ?