Const
Whats const? A const variable cannot be reassigned You have to know: Variables defined with const cannot be Redeclared. Variables defined with const cannot be Reassigned. Variables defined with const have Block Scope. Const Samples Overview? const aq = 4.44267568; aq = 1.44; // This will give an error aq = aq + 70; …