Reference
Variables
Variables are declared with let and may be reassigned according to the language’s binding rules. Example let name = "sakamoto"; let age = 20; let isCat = true; Notes When the language runtime changes binding or scope behavior, this page should be reviewed together with the parser and VM docs.
Variables are declared with let and may be reassigned according to the
language’s binding rules.
Example
let name = "sakamoto";
let age = 20;
let isCat = true;
Notes
When the language runtime changes binding or scope behavior, this page should be reviewed together with the parser and VM docs.