After successfully implementing a hashmap in typescript following a helpful post, I am facing an issue with removing something from the hashmap.
TypeScript hashmap/dictionary interface
To add a key to the keys field of my abstract Input class's hashmap, I use
Input.keys[event.key] = event.keyCode;
. However, I am now wondering how to remove something from it.