What does the get method return if the key does not exist in the map?
const map = new Map();
const result = map.get('key');
What does the get method return if the key does not exist in the map?
const map = new Map();
const result = map.get('key');