Skip to content

Instantly share code, notes, and snippets.

@mbseid
Created July 19, 2014 22:44
Show Gist options
  • Save mbseid/9fa3fdf75c4940eef5ca to your computer and use it in GitHub Desktop.
Save mbseid/9fa3fdf75c4940eef5ca to your computer and use it in GitHub Desktop.
Javascript String Primative
String.prototype.foobar = function(){return this;}
> function (){return this;}
typeof "foo"
> "string"
typeof "foo".foobar()
> "object"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment