$getObjectKeys
$getObjectKeys
will return all keys of all properties within the given object.
Usage
$getObjectKeys[objectName;separator?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
objectName | string | Name of the object. | true |
separator? | string | The separator. | true |
Example(s)
This will return Leref
and dbd.js
:
1client.command({2 name: "getObjectKeys",3 code: `4 $getObjectKeys[Object Name; ]5 $createObject[Object Name;{6 "Leref": "Ferel",7 "dbd.js": "aoi.js"8 }]9 `10});