Skip to content

Instantly share code, notes, and snippets.

@blarfoon
Last active February 21, 2022 22:49
Show Gist options
  • Save blarfoon/50d2d68197a18c896c2f74ff250fd6af to your computer and use it in GitHub Desktop.
Save blarfoon/50d2d68197a18c896c2f74ff250fd6af to your computer and use it in GitHub Desktop.
const myObject = {
hi: "mom",
someone: {
else: "red",
},
};
function doSomething(whatever) {
whatever.hi = "medium";
whatever.someone.else = "blue";
};
console.log(myObject); // > {"hi":"mom","someone":{"else":"red"}}
doSomething({ ...myObject });
console.log(myObject); // > {"hi":"mom","someone":{"else":"blue"}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment