Posts by Wendel Siqueira • 76 points
2 posts
-
5
votes3
answers6632
viewsA: How do I know if an object is a javascript array (without jquery)?
You can try it like this: Object.prototype.toString.call( list ) === '[object Array]' ) will return True or False
-
1
votes1
answer89
viewsA: Problems with parse of JSON in Angularjs
Antonio have you tried to access the items again in an ng-repeat? for example: <tr ng-repeat="cliente in clientes | filter:searchText"> <td>{{cliente.idCliente}}</td>…