getVariable
Retrieves the value of a variable by its name.
Description
vcc.getVariable(name)
Parameters
name
The name of the variable.
Return values
The value of the variable
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.