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 TypeScript

2 Answers

0 votes
const mp = new Map();
 
mp.set('aq', 1);
mp.set('bbq', 2);
mp.set('cccq', 3);
mp.set('ddddq', 4);
mp.set('eeeeeq', 5);
 
function printMap(value : number, key : string) {
    console.log(`Key: ${key}, Value: ${value}`);
}
 
mp.forEach(printMap);
  
  
      
      
/*
run:
      
"Key: aq, Value: 1" 
"Key: bbq, Value: 2" 
"Key: cccq, Value: 3" 
"Key: ddddq, Value: 4" 
"Key: eeeeeq, Value: 5" 
      
*/

 



answered Mar 13, 2022 by avibootz
0 votes
const mp = new Map();
 
mp.set('aq', 1);
mp.set('bbq', 2);
mp.set('cccq', 3);
mp.set('ddddq', 4);
mp.set('eeeeeq', 5);
 
mp.forEach((value, key) => {
    console.log(`Key: ${key}, Value: ${value}`);
});
 
  
  
      
      
/*
run:
      
"Key: aq, Value: 1" 
"Key: bbq, Value: 2" 
"Key: cccq, Value: 3" 
"Key: ddddq, Value: 4" 
"Key: eeeeeq, Value: 5" 
      
*/

 



answered Mar 13, 2022 by avibootz

Related questions

2 answers 133 views
2 answers 163 views
163 views asked Mar 13, 2022 by avibootz
2 answers 136 views
2 answers 185 views
185 views asked May 19, 2022 by avibootz
...