This is the data:
var json= [
{
"key1": "val1"
},
{
"key2": "val2"
},
{
"key3": "val3"
}
]
How can I draw the data both 'key1', 'key2','key3' and 'val1' ,'val2' ,'val3' to draw it in dust?
If the object is like
var address = {
"a": "addressr",
"c": "city",
"s": "state",
"z": "zip"
}
and if I know the keys already I can draw like {address.a}
to get the address.