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.

What is x?

Just practice this again.

Exercise

Which value does x have after execution of the following code?
function hello() {
  return 'Hi!';
}

let x = hello();
'Hi!'

loving