If I try to access an element's property of an array like this:
{{myArray[0].myProperty}}
I get 'Runtime Error... Uncaught (in promise): TypeError: Cannot read property 'property' of undefined'
But if I use *ngFor I can access every property of each element in the array. I'm missing something? How can I access a property of an specific element?
*ngForimplementation