+ 2
How to call (object in array ) in array
I want to call object in array in angular
2 Respostas
+ 1
It depends where you want to call it from.
If it's from the html:
{{ array[ index ] }}
If it's from inside the js of the app:
$scope.array[ index ]
0
I mean angular typescript..