Skip to content

Instantly share code, notes, and snippets.

@blarfoon
Last active February 21, 2022 22:53
Show Gist options
  • Save blarfoon/84531f113f4098ca06c265a00f995105 to your computer and use it in GitHub Desktop.
Save blarfoon/84531f113f4098ca06c265a00f995105 to your computer and use it in GitHub Desktop.
function myObjectFunc() {
this.hi = "mom";
}
const myObject = Object.create(myObjectFunc.prototype)
myObjectFunc.call(myObject)
// This will not work as intended!
myObjectFunc.hello = "world";
console.log(myObject); // undefined!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment