localStorage.setItem('name', 'Bob') // make/set a key/value var username = localStorage.getItem('name') // get the key console.log(username) // log the key // This data will be saved even after you close the page