Skip to content

Instantly share code, notes, and snippets.

@blarfoon
Last active February 22, 2022 00:12
Show Gist options
  • Save blarfoon/7d0969dc11eb0a4e9ef08251da80bea2 to your computer and use it in GitHub Desktop.
Save blarfoon/7d0969dc11eb0a4e9ef08251da80bea2 to your computer and use it in GitHub Desktop.
const myObject = {
hi: "mom",
changeHi() {
this.hi = "medium";
},
something: undefined,
};
console.log(myObject); // > {hi: "mom", something: undefined, changeHi: ƒ}
const myNewObject = JSON.parse(JSON.stringify(myObject));
console.log(myNewObject); // > {hi: "mom"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment