Skip to content

Instantly share code, notes, and snippets.

@specialunderwear
Created January 30, 2012 00:45
Show Gist options
  • Save specialunderwear/1701662 to your computer and use it in GitHub Desktop.
Save specialunderwear/1701662 to your computer and use it in GitHub Desktop.
Change all prototypes
> Object.prototype.i_am_everywhere = function() {
> return 'I am everywhere';
> };
> document.i_am_everywhere();
'I am everywhere'
> var non_believer = "not here you're not!";
> non_believer.i_am_everywhere();
'I am everywhere'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment