$removeObjectProperty
$removeObjectProperty
will remove a property of a given object.
Usage
$removeObjectProperty[objectName;...properties]
Parameters
Field | Type | Description | Required |
---|---|---|---|
objectName | string | The object name. | true |
…properties | string | Name of the properties. | true |
Example(s)
This will remove Object
from the given object:
1client.command({2 name: "removeObjectProperty",3 code: `4 $removeObjectProperty[Object Name;Object]5 $createObject[Object Name;{"Object": "Property"}]6 `7});