Is there a way to access the individual values within my array of arrays?
[
["0","0","0"],
["1","1","1"],
["1","0","0"]
]
I have attempted using two ngRepeat loops:
<ul>
<li ng-repeat="line in test">
{{line}}
<ul>
<li ng-repeat="point in line">
{{point}}
</li>
</ul>
</li>
</ul>
I feel like I'm missing something obvious. Any advice would be appreciated.
To view the code, please visit the following link: http://plnkr.co/edit/LeZw0HRab472dcNiHPQM?p=preview