Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:37
Show Gist options
  • Save ilearnjavascript/9d5f13b976470150cd2034a86c173baf to your computer and use it in GitHub Desktop.
Save ilearnjavascript/9d5f13b976470150cd2034a86c173baf to your computer and use it in GitHub Desktop.
es6 - classes - 2.js
var es5_Person = function(firstname, lastname) {
this.firstname = firstname;
this.lastname = lastname;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment