qcobjects-docs
Version:
The official app and website for documentation of QCObjects
11 lines (7 loc) • 310 B
Markdown
### GLOBAL
**GLOBAL** is a special QCObjects class to reach the global scope. It has a set and a get method to help you to manage the internal GLOBAL properties.
#### Example:
```javascript
GLOBAL.set('globalProperty1','some value in global scope');
var globalProperty1 = GLOBAL.get('globalProperty1');
```