I have the following data structure:
{
current: { Number: '8', AnotherNumber: 123 },
}
{
current: { Number: '9', AnotherNumber: 456 },
}
I want in angular view to print out in a table:
Number AnotherNumber
8 123
I am trying with this, but it is displaying the whole current object
<li ng-repeat="friend in friends">
<span ng-repeat="(key, value) in friend">
{{friend.current}}
</span>
</li>