Advanced Javascript Tutorial

Constants

Definition

const MY_KONST = 55;

const OBJ = {name:'John', age:23};

 Examples: 01const.js

 

Scope

global constant -is accesed inside and outside function, e.g is accesed globally and locally 05const_global_scope.js

local constant -is not accessible outside function 10const_local_scope.js