I have a dictionary that has the format of
dictionary = {0: {object}, 1:{object}, 2:{object}}
How can I iterate through this dictionary by
Try this:
var value; for (var key in dictionary) { value = dictionary[key]; // your code here... }