trying to access controller variable in ng-repeat with same name. e.g.
Controller
$scope.items = [1,2,3,4,5];
$scope.a = {
data: "Some Data"
};
View
<div ng-repeat="a in items"> {{ a }} - {{ $parent.a.data }} </div>
but it is not working. is it possible to access that variable (Object) inside ng-repeat with same name?