$getObject
$getObject
will return the previously created object.
Usage
$getObject[objectName;format?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
objectName | string | The object name. | true |
format? | boolean | Format the output? 1. true (default) 2. false | false |
Example(s)
This will return the object created in $createObject
:
1client.command({2 name: "getObject",3 code: `4 $getObject[Object Name;true]5 $createObject[Object Name;{"Leref": "Ferel"}]6 `7});