Given a map, remove all key/value pairs from the map.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]) // output: {}
/* output */