I have a pretty basic scenario (somewhat new to angular). I am trying to convert JSON:
[
{'name': 'Nick'},
{'name': 'David'},
{'name': 'John'},
]
To:
<p>Nick,David,John</p>
But I can not figure out how to generate a single "p." How do you call ng-repeat inside of the <p>
<p ng-repeat="item in menuItems">{{item.name}}</p>