Answers for "how to iterate through the map in js"

1

js loop trough map

for (let key of map) {
	console.log(key);
}
Posted by: Guest on November-17-2020
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 "how to iterate through the map in js"

Code answers related to "Swift"

Browse Popular Code Answers by Language