Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created November 29, 2020 10:27
Show Gist options
  • Save gpDA/a2c00f8bbc23dffef283b86059010d3a to your computer and use it in GitHub Desktop.
Save gpDA/a2c00f8bbc23dffef283b86059010d3a to your computer and use it in GitHub Desktop.
const a = {
en: 'Bye',
de: 'Tschüss'
};
let b = Object.assign({}, a)
b.de = 'Ciao';
console.log(b.de) // Ciao
console.log(a.de) // Tschüss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment