0
I have an array with some information and that always comes with 4 numbers in front of the Names:
{id: 1810, name: "2652joaodasilva", username: "", password: ""}
{id: 2744, name: "3704DiegoSerri", username: "", password: ""}
I would like to remove these 4 numbers, tried some ways with limitTo, but only managed to cut in other ways, I’m using ng-repeat to display them in a table:
<tr ng-repeat="clientes in list_clients">
<td class="text-center">{{clientes.name}}</td>
</tr>