Here\'s my json:
{\"d\":{\"key1\":\"value1\", \"key2\":\"value2\"}}
Is there any way of accessing the keys and values (in javascript)
Use for loop to achieve the same.
var dlist = { country: [ 'ENGLAND' ], name: [ 'CROSBY' ] } for(var key in dlist){ var keyjson = dlist[key]; console.log(keyjson) }