Created
February 16, 2017 20:49
-
-
Save otterthecat/a60d2f8a41dabc968d4df15889ee0a34 to your computer and use it in GitHub Desktop.
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
var course = { | |
name: 'JavaScript Applications', | |
awesome: true, | |
teachers: ['Assaf', 'Shane'], | |
students: [ | |
{ | |
name: 'Steve', | |
computer: { | |
OS: 'Linux', | |
type: 'laptop' | |
} | |
}, | |
{ | |
name: 'Katy', | |
computer: { | |
OS: 'OSX', | |
type: 'macbook' | |
} | |
}, | |
{ | |
name: 'Chuck', | |
computer: { | |
OS: 'OSX', | |
type: 'macbook' | |
} | |
} | |
], | |
preReqs : { | |
skills : ['html', 'css', 'git'], | |
equipment: { | |
laptop: true, | |
OSOptions: ['linux', 'osx'] | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment