Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created September 3, 2015 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xto3na/bd6fe72cc5580742f504 to your computer and use it in GitHub Desktop.
Save xto3na/bd6fe72cc5580742f504 to your computer and use it in GitHub Desktop.
JS - constructor
function User(name) {
//Если конструктор вызван без ключевого слова new, this это window
//B таком случае вызывается этот же конструктор, но с ключевым словом new
if(!(this instanceof User)) {
return new User(name);
}
this.name = name;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment