Answers for "iterate over map js"

0

loop through map in js

var myMap = new Map();
myMap.set("0", "foo");
myMap.set(1, "bar");
myMap.set({}, "baz");

for (const [key, value] of myMap.entries()) {
  console.log(key, value);
}
Posted by: Guest on April-07-2020
3

loop through map in js

const object = {'a': 1, 'b': 2, 'c' : 3};
for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}
Posted by: Guest on April-07-2020
0

iteratea on values map js

map.values((value) => /* do whatever with value */)
Posted by: Guest on January-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language