Typescript Constants (Const)
Typescript constants are variables, whose values cannot be modified. They are block-scoped just like the let keyword. Their value cannot be changed neither they can be redeclared. Const keyword is part of the es2015 (es6) specification of the javascript.