property "..." is non-configurable and can't be deleted -> fixed
Firefox 23 does not allow the use of `delete localStorage[value];` anymore. We have to use `localStorage.removeItem(value);` and all other localStorage methods.
Showing
Please register or sign in to comment