Skip to content

Instantly share code, notes, and snippets.

@Maciek416
Created June 2, 2010 02:47
Show Gist options
  • Select an option

  • Save Maciek416/421847 to your computer and use it in GitHub Desktop.

Select an option

Save Maciek416/421847 to your computer and use it in GitHub Desktop.
var P = function(x){
this.x = x;
};
P.prototype.blah = function(){
};
var test = new P(7);
(test instanceof P) && (P==test.constructor)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment