Returns a boolean indicating whether an element with the specified key exists or not.
has(key)
key
The key of the element to test for presence in the Map object.
true if an element with the specified key exists in the Map object, false otherwise.
const map = new Map()
map.set("myKey", "myValue")
map.has("myKey")
true