Guest User

Untitled

a guest
Dec 15th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. {
  2. id: 1,
  3. joined: '2000-12-02',
  4. name:'John',
  5. city:'Chandler',
  6. orderTotal: 9.9956,
  7. orders: [
  8. {
  9. id: 1,
  10. product: 'Shoes',
  11. total: 9.9956
  12. }
  13. ]
  14. },
  15. {
  16. id: 2,
  17. joined: '1965-01-25',
  18. name:'Zed',
  19. city:'Las Vegas',
  20. orderTotal: 19.99,
  21. orders: [
  22. {
  23. id: 2,
  24. product: 'Baseball',
  25. total: 9.995
  26. },
  27. {
  28. id: 3,
  29. product: 'Bat',
  30. total: 9.995
  31. }
  32. ]
  33. },
  34. {
  35. id: 3,
  36. joined: '1944-06-15',
  37. name:'Tina',
  38. city:'New York',
  39. orderTotal:44.99,
  40. orders: [
  41. {
  42. id: 4,
  43. product: 'Headphones',
  44. total: 44.99
  45. }
  46. ]
  47. },
  48. {
  49. id: 4,
  50. joined: '1995-03-28',
  51. name:'Dave',
  52. city:'Seattle',
  53. orderTotal:101.50,
  54. orders: [
  55. {
  56. id: 5,
  57. product: 'Kindle',
  58. total: 101.50
  59. }
  60. ]
  61. }
Add Comment
Please, Sign In to add comment