From MDN, javascript provides Map which is C++ equivalent to std::map. Is there a similar equivalent to unordered_map (providing O(1) insertions/lookup/deletion on avg).
Edit: As the answers suggest, std::unordered_map is more closer to javascript Map than std::map.
 
    