Skip to content

$getObjectValues

$getObjectValues will return all values of all properties within the given object.

Usage

$getObjectValues[objectName;separator?]

Parameters

FieldTypeDescriptionRequired
objectNamestringName of the object.true
separator?stringThe separator.true

Example(s)

This will return Ferel and aoi.js:

1
client.command({
2
name: "getObjectValues",
3
code: `
4
$getObjectValues[Object Name; ]
5
$createObject[Object Name;{
6
"Leref": "Ferel",
7
"dbd.js": "aoi.js"
8
}]
9
`
10
});