I have a json string like this :
{"age":[459,918],"id":["bizno459","bizno459"],"name":["name459","wrongname459"]}
Now i want to show it using angular js like this :
<table>
<tr>
<th>column</th>
<th>value1</th>
<th>value2<th>
</tr>
<tr>
<td>age</td>
<td>459</td>
<td>918</td>
</tr>
<tr>
<td>id</td>
<td>bizno459</td>
<td>bizno459</td>
</tr>
</table>
The column is dynamic, in this example, there are 3 : age, id, name. In another example, I have two columns: id,name.
How could I achieve this?