Skip to content

Instantly share code, notes, and snippets.

@Obayanju
Last active August 13, 2018 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Obayanju/7d90ee5d32bd0b325ec64ab8d6c902d6 to your computer and use it in GitHub Desktop.
Save Obayanju/7d90ee5d32bd0b325ec64ab8d6c902d6 to your computer and use it in GitHub Desktop.
function Planet() {
// ....
}
Planet.prototype.constructor === Planet; // true
let mars = new Planet();
mars.constructor === Planet; // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment