Skip to content

Instantly share code, notes, and snippets.

@blankyao
Created April 12, 2011 06:53
Show Gist options
  • Save blankyao/915066 to your computer and use it in GitHub Desktop.
Save blankyao/915066 to your computer and use it in GitHub Desktop.
make sure that the new operator is always used
//http://ejohn.org/apps/learn/#36
function User(first, last){
if ( !(this instanceof arguments.callee) )
return new User(first, last);
this.name = first + " " + last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment