Map.hasKey
hasKey($key) -> boolean
Description
Return true if $key
exists.
$map = { a: 1, b: 2, c: 3 } $map.has('b') //= true $map.has('X') //= false
Return true if $key
exists.
$map = { a: 1, b: 2, c: 3 } $map.has('b') //= true $map.has('X') //= false