Created
September 3, 2015 20:51
-
-
Save xto3na/bd6fe72cc5580742f504 to your computer and use it in GitHub Desktop.
JS - constructor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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