Created
July 11, 2023 11:30
-
-
Save mpycio/48210b2b496aa962535ac0804c5943dc 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
void main() { | |
var person = { | |
"name" : "Marcin", | |
"age" : 48, | |
"foot": "left" | |
}; | |
var updates = { | |
"name": "Kaks", | |
"age": 25, | |
"playingStyle": "Agressive" | |
}; | |
print("Original:"); | |
print(person); | |
print("After merge:"); | |
print({...person, ...updates}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment