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,907 questions

51,839 answers

573 users

How to filter a map in TypeScript

1 Answer

0 votes
const myMap: Map<string, number> = new Map([
  ['a', 1],
  ['b', 2],
  ['c', 3],
  ['d', 4],
  ['e', 5],
  ['g', 6]
]);

// Filter for values greater than 2
const filteredMap: Map<string, number> = new Map(
  [...myMap.entries()].filter(([key, value]: [string, number]) => value > 2)
);

console.log(filteredMap);




/*
run:

Map (4) {"c" => 3, "d" => 4, "e" => 5, "g" => 6} 

*/

 



answered Aug 7, 2025 by avibootz
...