The browser storage localStorage is not available. Either your browser does not support it or you have disabled it or the maximum memory size is exceeded. Without localStorage your solutions will not be stored.

Reassignment

A variable can be reassigned a new value at any time using the equal sign.
let color = 'red';
color = 'green';
The variable color is initialized with the value 'red'. Then it receives the value 'green'.

Exercise

Which value does x have after execution of the following code?
let x = 'Tic';
x = 'Tac';
x = 'Toe';
'Toe'

loving