There was an error while loading. Please reload this page.
Mutable Variables are Defined Using The Keyword var:
var
var a = 10; var b = "hello"
These can be redefined later after defining them:
var a = 10; var b = "hello" a = 20; b = 30;
Immutable Variables are Defined Using The Keyword novar:
novar
novar a = 10; novar b = "hello"
These cannot be redefined later after defining them.