Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

TypeError: Assignment to constant variable.

const PI = 3.141592653589793;
PI = 3.14;      // This will give an error because once you have declared a constant, you cannot reassign it a value
 
PREVIOUS NEXT
Tagged: #Assignment #constant
ADD COMMENT
Topic
Name
3+2 =