Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Map.keys

keys() -> list

Description

Get a List of all keys.

$map = { a: 1, b: 2, c: 3 }

$map.keys()
//= ['a', 'b', 'c']

See Also