Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:39
Show Gist options
  • Save ilearnjavascript/6c16bb7a1186882bfb0e2a67e9c96049 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/6c16bb7a1186882bfb0e2a67e9c96049 to your computer and use it in GitHub Desktop.
es6 - classes - 8.js
// The es5_Soldier.prototype creates a new object which has the es5_person.prototype as its __proto__
es5_Soldier.prototype = Object.create(es5_Person.prototype);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment