Methods

getΒΆ

get(h:Hash, k:Any)

Get hash value by key or null if it does not exist
Source: stdlib.ngs:909

Example

h = {"a": 1}
h.get("a")  # 1
h.get("b")  # null