Skip to content

Variables

Pranav Verma edited this page Oct 3, 2024 · 3 revisions

Variables

Types of Variables

Mutable

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

Immutable Variables are Defined Using The Keyword novar:

novar a = 10;
novar b = "hello"

These cannot be redefined later after defining them.

Clone this wiki locally