Mémoire de const javascript
// 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.
Puzzled Puffin