Given a map and a key, return boolean if the map has the key.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]), k = 'oranges' // output: false
/* output */