Created
December 13, 2019 09:55
-
-
Save paschalidi/39dab7c6bb6a1d7a7de3980fd6c2925c to your computer and use it in GitHub Desktop.
what will be consoled?
This file contains 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('John'); | |
console.log(person); | |
console.log(person.name); | |
var person = new Person('John'); | |
console.log(person); | |
console.log(person.name); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment