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 a map in Node.js

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('nodejs', 5);
   
console.log([...mp.entries()]);
  
console.log([...mp.keys()]);
  
console.log([...mp.values()]);
   
   
   
   
/*
run:
   
[
  [ 'a', 1 ],
  [ 'bb', 2 ],
  [ 'ccc', 3 ],
  [ 'dddd', 4 ],
  [ 'nodejs', 5 ]
]
[ 'a', 'bb', 'ccc', 'dddd', 'nodejs' ]
[ 1, 2, 3, 4, 5 ]
   
*/

 



answered May 19, 2022 by avibootz
0 votes
function printMap(value, key) {
    console.log(`Key: ${key}, Value: ${value}`);
}
  
const mp = new Map();
  
mp.set('a', 1);
mp.set('bb', 2);
mp.set('ccc', 3);
mp.set('dddd', 4);
mp.set('nodejs', 5);
   
mp.forEach(printMap);   
   
   
   
   
/*
run:
   
Key: a, Value: 1
Key: bb, Value: 2
Key: ccc, Value: 3
Key: dddd, Value: 4
Key: nodejs, Value: 5
   
*/

 



answered May 19, 2022 by avibootz

Related questions

2 answers 163 views
163 views asked Mar 13, 2022 by avibootz
2 answers 99 views
2 answers 91 views
1 answer 120 views
120 views asked May 1, 2023 by avibootz
1 answer 171 views
1 answer 97 views
97 views asked Aug 13, 2022 by avibootz
1 answer 105 views
...