Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript const memory

// Create a memory unit and label it as V
// This label cannot be discarded or reused
const V = { id: 42 };

// Later in the program
V = []; // TypeError: Assignment to constant variable.
Source by jscomplete.com #
 
PREVIOUS NEXT
Tagged: #javascript #const #memory
ADD COMMENT
Topic
Name
2+4 =