keys

Description

Returns list of property names of an object.

list keys( object input )

Returns a list of property names that exist on the input object.

Example

{obj={"a":"Hello","b":"World"}}
{keys(obj)}   ---> ["a","b"]

Contact us

Top