showing results for - "how to check if an object is map in javascript"
Bentley
02 May 2018
1var foo = new Set;
2foo instanceof Set; // True!
3foo instanceof Map; // False!
4