Skip to content

Instantly share code, notes, and snippets.

@chrisl8888
Created October 27, 2015 20:51
Show Gist options
  • Select an option

  • Save chrisl8888/2e2deaef273bec261e4a to your computer and use it in GitHub Desktop.

Select an option

Save chrisl8888/2e2deaef273bec261e4a to your computer and use it in GitHub Desktop.
Nested json
[
{ name: 'Europe',
children: [
{ name: 'Italy',
children: [
{ name: 'Rome' },
{ name: 'Milan' }
]},
{ name: 'Spain'}
]
},
{ name: 'South America',
children: [
{ name: 'Brasil' },
{ name: 'Peru' }
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment