js iterate through dictionary code example

Example 1: javascript for loop over dictionary

var dict = {'a': 1, 'b': 2, 'c' : 3}; 
for([key, val] of Object.entries(dic)) {
  console.log(key, val);
}

Example 2: loop dictionary with key and value javascript

const object = {'a': 1, 'b': 2, 'c' : 3};
for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}

Example 3: javascript loop over dictionary

for (const [key, value] of myMap.entries()) {
  console.log(key, value);
}

Example 4: javascript loop over dictionary

'use strict';

const object = {'a': 1, 'b': 2, 'c' : 3};
for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}

Example 5: gdscript iterate over dictionary

for x in dictionary.values():
	print(x)