How to get the length of a map in Node.js

1 Answer

0 votes
const mp = new Map([
  ['javascript', 1],
  ['node.js', 2],
  ['typescript', 3],
  ['python', 4],
]);

console.log(mp.size);
 
 
 
   
/*
run:
   
4
   
*/

 



answered Jun 23, 2022 by avibootz

Related questions

1 answer 135 views
135 views asked May 1, 2023 by avibootz
1 answer 116 views
1 answer 123 views
1 answer 130 views
1 answer 154 views
1 answer 120 views
1 answer 115 views
...