Playground: https://play.nativescript.org/?template=play-tsc&id=ZQ8J69&v=12
I seem to be unable to access array elements from my UI template. I'm trying to create a simple bingo card. In the UI if I do:
<Label text="{{ card }}" />
I get [object] as expected.
<Label text="{{ card.b }}" />
gives me [object], [object] (an array) as expected.
<Label text="{{ card.b[0] }}" />
I get nothing. As you can see from the console log, card.b[0] is definitely set.
I don't understand why my UI won't reflect what is in my observable objects/arrays