isGlobalDefined ( string variableName ) : boolean
Returns true if the variable is defined and in global scope.
Grimport does not allows to check if local variables are definded.
Example
boolean isDefined = isGlobalDefined("globalVar");
if (isGlobalDefined("globalVar")) {
console("globalVar is defined globally.")
}
Parameters
variableName
The name of the variable