Skip to content

Instantly share code, notes, and snippets.

@catkins
Created November 16, 2014 05:00
Show Gist options
  • Save catkins/ddd3f79fb25493941778 to your computer and use it in GitHub Desktop.
Save catkins/ddd3f79fb25493941778 to your computer and use it in GitHub Desktop.
Local Strorage with complex types
localStorage.setItem('numbers', [1, 2, 3]);
localStorage.getItem('numbers') // => "1,2,3"
var hash = { hello: 'world' }
localStorage.setItem('myHash', hash);
localStorage.getItem('myHash') // => "[object Object]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment