Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created November 29, 2020 10:24
Show Gist options
  • Save gpDA/26396c5e242d47f275cbdf4c8b902313 to your computer and use it in GitHub Desktop.
Save gpDA/26396c5e242d47f275cbdf4c8b902313 to your computer and use it in GitHub Desktop.
const a = {
en: 'Bye',
de: 'Tschüss'
};
let b = {...a}; // Spread Operator
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