Skip to content

Instantly share code, notes, and snippets.

@Damimd10
Created March 24, 2019 02:56
Show Gist options
  • Save Damimd10/72d07ae3b109d261fc7b1e537998d175 to your computer and use it in GitHub Desktop.
Save Damimd10/72d07ae3b109d261fc7b1e537998d175 to your computer and use it in GitHub Desktop.
var name = 'Damian';
function Person() {
this.name = 'Leo';
}
console.log(new Person().name); // log 'Leo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment