Skip to content

Instantly share code, notes, and snippets.

@jamesoshea
Created March 14, 2018 19:07
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 jamesoshea/09178b84d7857b94eb3684fe634b61a3 to your computer and use it in GitHub Desktop.
Save jamesoshea/09178b84d7857b94eb3684fe634b61a3 to your computer and use it in GitHub Desktop.
const el = document.querySelector("#app");
const spicyObject = {
spicyMethod() {
return 'feel the heat';
}
};
const fullOfPotential = {};
Object.setPrototypeOf(fullOfPotential, spicyObject);
fullOfPotential.spicyMethod(); // 'feel the heat'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment