Skip to content

$get

$get will retrieve temporary variables stored by $let.

Usage

$get[var]

Parameters

FieldTypeDescriptionRequired
varstringTemporary variable you want to retrieve.true

Example(s)

This will return Leref from $let:

1
client.command({
2
name: "get",
3
code: `
4
Aoi.js developer: $get[developer]
5
$let[developer;Leref]
6
`
7
});