Guest User

Untitled

a guest
Apr 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Cookies be gone!
  2. some_data = {
  3. a: 'b',
  4. c: 123,
  5. d: 'this could be really long, sort of. Damn user-specific limits… And what about encoding?! Blürgh!'
  6. };
  7. sessionStorage.setItem('find_me', JSON.stringify(some_data));
  8. JSON.parse(sessionStorage.getItem('find_me'));
Add Comment
Please, Sign In to add comment