Variables
Declaration
To declare a variable, we have a var keyword.
There are no let or const, so every variable is mutable, except the use statement.
Everything is local
To make variables be more explicit, undefined variables lead to syntax error. You must declare your variables before use them.
There are no global variables, see module Global to store data globally.
Last updated
Was this helpful?