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 Node.js

2 Answers

0 votes
const mp = new Map();

mp.set('az', 1);
mp.set('bbz', 2);
mp.set('cccz', 3);
mp.set('ddddz', 4);
mp.set('eeeeez', 5);

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

mp.forEach(printMap);
 
 
     
     
/*
run:
     
Key: az, Value: 1
Key: bbz, Value: 2
Key: cccz, Value: 3
Key: ddddz, Value: 4
Key: eeeeez, Value: 5
     
*/

 



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

mp.set('az', 1);
mp.set('bbz', 2);
mp.set('cccz', 3);
mp.set('ddddz', 4);
mp.set('eeeeez', 5);

mp.forEach((value, key) => {
    console.log(`Key: ${key}, Value: ${value}`);
});
 
 
 
     
     
/*
run:
     
Key: az, Value: 1
Key: bbz, Value: 2
Key: cccz, Value: 3
Key: ddddz, Value: 4
Key: eeeeez, Value: 5
     
*/

 



answered Mar 13, 2022 by avibootz

Related questions

1 answer 143 views
2 answers 141 views
2 answers 111 views
111 views asked May 19, 2022 by avibootz
1 answer 128 views
1 answer 137 views
1 answer 93 views
1 answer 96 views
...