Skip to content

Instantly share code, notes, and snippets.

@otterthecat
Created February 16, 2017 20:49
Show Gist options
  • Save otterthecat/a60d2f8a41dabc968d4df15889ee0a34 to your computer and use it in GitHub Desktop.
Save otterthecat/a60d2f8a41dabc968d4df15889ee0a34 to your computer and use it in GitHub Desktop.
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