-
Notifications
You must be signed in to change notification settings - Fork 2
Variables
Pranav Verma edited this page Nov 26, 2024
·
3 revisions
Mutable Variables are Defined Using The Keyword 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 a = 10;
novar b = "hello"
These cannot be redefined later after defining them.
Blue Lagoon.
A Pranav Verma Production.