I have a dictionary that has the format of
dictionary = {0: {object}, 1:{object}, 2:{object}}
How can I iterate through this dictionary by
You can use below script.
var obj={1:"a",2:"b",c:"3"}; for (var x=Object.keys(obj),i=0;i
outputs 1 a 2 b c 3