Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to print map with forEach in JavaScript

2 Answers

0 votes
const mp = new Map();

mp.set('a', 1);
mp.set('bb', 2);
mp.set('ccc', 3);
mp.set('dddd', 4);
mp.set('eeeee', 5);

function printMap(value, key) {
    console.log(`Key: ${key}, Value: ${value}`);
}

mp.forEach(printMap);
 
 
     
     
/*
run:
     
"Key: a, Value: 1"
"Key: bb, Value: 2"
"Key: ccc, Value: 3"
"Key: dddd, Value: 4"
"Key: eeeee, Value: 5"
     
*/

 



answered Mar 13, 2022 by avibootz
0 votes
const mp = new Map();

mp.set('a', 1);
mp.set('bb', 2);
mp.set('ccc', 3);
mp.set('dddd', 4);
mp.set('eeeee', 5);

mp.forEach((value, key) => {
    console.log(`Key: ${key}, Value: ${value}`);
});
 
 
     
     
/*
run:
     
"Key: a, Value: 1"
"Key: bb, Value: 2"
"Key: ccc, Value: 3"
"Key: dddd, Value: 4"
"Key: eeeee, Value: 5"
     
*/

 



answered Mar 13, 2022 by avibootz

Related questions

2 answers 163 views
163 views asked Mar 13, 2022 by avibootz
2 answers 141 views
1 answer 137 views
137 views asked Sep 29, 2019 by avibootz
...