This is the ability for javascript to access the local storage of an app.
Boilerplate
localStorage.setItem(key, value); // set a item
localStorage.getItem(key); // get a item
This is the ability for javascript to access the local storage of an app.
localStorage.setItem(key, value); // set a item
localStorage.getItem(key); // get a item