Skip to content

Instantly share code, notes, and snippets.

@ramsunvtech
Last active August 4, 2016 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramsunvtech/5a67f4b7f83018b97774cb1ec1754bef to your computer and use it in GitHub Desktop.
Save ramsunvtech/5a67f4b7f83018b97774cb1ec1754bef to your computer and use it in GitHub Desktop.
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