Skip to content

Instantly share code, notes, and snippets.

@naokazuterada
Created June 1, 2012 02:42
Show Gist options
  • Save naokazuterada/2848246 to your computer and use it in GitHub Desktop.
Save naokazuterada/2848246 to your computer and use it in GitHub Desktop.
localStorage の値を削除したいときはremoveItemを使う
// 間違った方法
localStorage.hoge = 'buuu';
localStorage.hoge = null; // 'null' が代入されてしまう
localStorage.hoge = undefined; // 'undefined' が代入されてしまう
// 正しい方法
localStorage.hoge = 'buuu';
localStorage.removeItem('hoge');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment