Object
Object functions are used to manipulate and work with objects.
serialize
This function is called on an Object and returns a String containing a JSON serialized copy of the object
{}
a.b = 1 # 1
a.c = 2 # 2
serialized = @a.serialize() # "{\"b\":1,\"c\":2}"
keys
This function is called on an object and returns an array of its keys.
values
This function is called on an object and returns an array of its values.