Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Last active June 27, 2016 00:47
Show Gist options
  • Select an option

  • Save egrueter-dev/94c670dc7c50ab44f599745481b0f3b9 to your computer and use it in GitHub Desktop.

Select an option

Save egrueter-dev/94c670dc7c50ab44f599745481b0f3b9 to your computer and use it in GitHub Desktop.
function Person() {
this.firstname = ‘John’
this.lastname = ‘Doe’
console.log(`This function is invoked!`)
}
var john = new Person();
//=> "This function is invoked!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment