Guest User

Untitled

a guest
Feb 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // class definition
  2. var Category = {
  3. name: String,
  4. children: [Category]
  5. }
  6.  
  7. // class instance
  8. var category = {
  9. name: 'machine',
  10. children: [
  11. {
  12. name: 'automobile',
  13. children: [
  14. {
  15. name: 'car'
  16. },
  17. {
  18. name: 'truck'
  19. }
  20. ]
  21. },
  22. {
  23. name: 'computer'
  24. }
  25. ]
  26. }
Add Comment
Please, Sign In to add comment