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 151 views
151 views asked May 1, 2023 by avibootz
1 answer 125 views
1 answer 141 views
1 answer 145 views
1 answer 161 views
1 answer 130 views
1 answer 126 views
...