Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Last active July 30, 2018 23:37
Show Gist options
  • Select an option

  • Save gladchinda/e3af1e95085b3e17d39bdc46f9794899 to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/e3af1e95085b3e17d39bdc46f9794899 to your computer and use it in GitHub Desktop.
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