Variables

Assign (set) a variable’s value

let x = 0;

Get a variable’s value

let x = 0;
x;

Change a variable’s value

let x = 0;
x+=1;

Edit this page on GitHub