Created
November 29, 2020 10:24
-
-
Save gpDA/26396c5e242d47f275cbdf4c8b902313 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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