Howjsconstant.md - brainchildservices/curriculum GitHub Wiki

Slide 1

Cannot be Reassigned

A const variable cannot be reassigned:

Example

 const PI = 3.141592653589793;
 PI = 3.14;      // This will give an error
 PI = PI + 10;   // This will also give an error