Signature: mapContains(map: Map<K, V>, key: K) -> bool

Description: True iff key is present in map.

Parameters

Returns: bool

Example

mapContains({"a": 1}, "a")  // true