How would you iterate over the entries in map such that both the entry key and the value can be printed? For example, I\'d like to do something like this:
&l
From the docs, I found this syntax works:
<ul> <li ng-repeat='(key, value) in {"First Name":"John", "Last Name":"Smith"}'> <span>Key: {{key}}, value: {{value}}</span> </li> </ul>