We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There are 2 ways to declare the existence of a variable.
Declaration:
var _x; var globalX;
Declaration + Initialization:
var _x = 5; var globalX = 5;
Variables that have already been declared can have their values reassigned trivially
Assignment:
_x = _x + 2;