Reputation: 123
I am using [ngStorage][1]
module of AngularJS. Below is my code:
$localStorage.$reset();
it is removing all variable.
Upvotes: 0
Views: 4190
Reputation: 657
Try this:
$localStorage.$reset({
counter: 42
});
where counter
is the key of your localStorage.
Upvotes: 3