Storage Page
Home
localStorage
Set ls.foo = "bar"
Get ls.foo
Result:
not attempted
sessionStorage
Set ss.foo = "baz"
Get ss.foo
Result:
not attempted
IndexedDB
Set idb key
Get idb key
Result:
not attempted
Cookies (document.cookie)
Set cookie foo=bar
Get cookie
Result:
not attempted