Deleting from localStorage: should I use delete or .removeItem? Deleting from localStorage: should I use delete or .removeItem? google-chrome google-chrome

Deleting from localStorage: should I use delete or .removeItem?


There's no difference in Chrome, but i recommend using localStorage.removeItem(key) so that you get in the habit of doing so. That way, when you go to use localStorage in a website, you are already using the method that is most likely to work with shims and polyfills for outdated browsers.