Skip to content

Instantly share code, notes, and snippets.

@wmakeev
Created March 12, 2015 08:03
Show Gist options
  • Save wmakeev/9648157e9b8243d26e6d to your computer and use it in GitHub Desktop.
Save wmakeev/9648157e9b8243d26e6d to your computer and use it in GitHub Desktop.
Call constructor without new
var SomeClass = function (options) {
if ( ! (this instanceof SomeClass)) {
return new SomeClass(options);
}
// code
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment