Account
Categories

Undefined


Definition:

A variable is undefined when it is declared.

But no value is assigned to it.

Syntax:

let variableName;

Example:

let x;

Here, x is undefined because no value is inside the variable.

Output: