Last active
September 25, 2021 12:46
-
-
Save midorikocak/2725ca983523fc51a2d9bfe9dd033878 to your computer and use it in GitHub Desktop.
Object Composition
This file contains 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
let person = { | |
name: 'midori', | |
hobbies: ['climbing', 'anime', 'playing piano', 'learning japanese'] | |
} | |
let teacher = { | |
topic: 'coding', | |
years: 10 | |
} | |
let teacherPerson = {...person, ...teacher}; | |
console.log(teacherPerson); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment