Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created November 29, 2020 10:31
Show Gist options
  • Save gpDA/ea5cbc280dfaa0125836674c33a77c94 to your computer and use it in GitHub Desktop.
Save gpDA/ea5cbc280dfaa0125836674c33a77c94 to your computer and use it in GitHub Desktop.
const a = {
foods: {
dinner: 'Pasta'
}
};
let b = {...a}
b.foods.dinner = 'Soup' // PROBLEM: changes for both objects
console.log(b.foods.dinner) // Soup
console.log(a.foods.dinner) // Soup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment