getVariable
Gets the selected value of a variable.
Description
vcc.getVariable(variableName: string)
Parameters
variableName
The name of the variable.
Return values
the value of the variable as a string
Example
var age = vcc.getVariable('age');
var city = vcc.getVariable('city');
if (age >= 20 && age <= 30 && !city) {
return false;
}
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.