Answers for "iterating over a map in javascript"

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
0

how to loop through a map in js

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

for (const [key, value] of Object.entries(myMap)) {
  console.log(key, value);
}
Posted by: Guest on May-12-2021

Code answers related to "iterating over a map in javascript"

Code answers related to "Swift"

Browse Popular Code Answers by Language