Predict the output of the following javascript code
sessionStorage.setItem('cool_secret', 123);
Quiz Explanation
The data stored in sessionStorage is removed after closing the tab.
If you used localStorage, the data would've been there forever, unless for example localStorage.clear() is invoked.