Last active
July 30, 2018 23:37
-
-
Save gladchinda/e3af1e95085b3e17d39bdc46f9794899 to your computer and use it in GitHub Desktop.
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 Person(name) { | |
| this.name = name; | |
| } | |
| var person = Person('Glad Chinda'); | |
| console.log(person); // undefined | |
| console.log(name); // "Glad Chinda" | |
| console.log(window.name); // "Glad Chinda" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment