Given a map, return the number of key/value pairs in the map.
// input: const m = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]) // output: 3
/* output */