localStorage: localStorage allows you to store data in the browser. localStorage.getItem(key) // retrieve an item localStorage.setItem(key, value) // set data in localStorage Display a score that can be increased or decreased. Use localStorage to store the score so that it persists when you come back to the page. You should be able to refresh the page and still see the score from the previous re..