For the purpose of debugging, you can select an element using the angular.element ("") selectors and see the scope of this element to check the variable that you are trying to access inside the element, is inside the area accessible to this element. Check out the example below. I used id selector, you can use child selector.
<tr id="canbeReplacedWithChildSelectors" ng-repeat="client in clientsIndex"> <td>{{client.fullName}}</td> <td>{{item.contactPhone}}</td> </tr>
angular.element ("# canbeReplacedWithChildSelectors"). scope () do this and check client.fullName available in the scope.in scope of your case angular.element ("# canbeReplacedWithChildSelectors") .scope (). the client will give you undefined.
source share