Last active
August 30, 2016 05:26
-
-
Save piq9117/19a5c9d85487a55b1b22591dc37875d2 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 devs = { | |
'developer1': { | |
name: 'ken', | |
hairColor: 'black', | |
iceCreamFlavor: '', | |
favoriteFood: [ | |
'apple', | |
'chips', | |
'car' | |
] | |
}, | |
'developer2': { | |
name: 'tony', | |
hairColor: 'blonde', | |
iceCreamFlavor: '', | |
favoriteFood: [ | |
'bacon', | |
'siomai' | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment