Storage Prototyping
Storage.prototype.removeItems = function () { | |
for(item in arguments) { | |
this.removeItem(arguments[item]); | |
} | |
}; | |
// Usage | |
localStorage.setItem('first', 'first value'); | |
localStorage.setItem('second', 'second value'); | |
localStorage.removeItems('first', 'second'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment