Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. const data = {
  2. people: [
  3. {
  4. id: 1,
  5. name: "Mark Hamill",
  6. birthday: "September 25, 1951",
  7. placeOfBirth: "Oakland, California, USA",
  8. bio:
  9. "Mark Hamill is best known for his portrayal of Luke Skywalker in the original Star Wars trilogy.",
  10. filmography: [1]
  11. },
  12. {
  13. id: 2,
  14. name: "Harrison Ford",
  15. birthday: "July 13, 1942",
  16. placeOfBirth: "Chicago, Illinois, USA",
  17. bio:
  18. "Harrison Ford was born on July 13, 1942 in Chicago, Illinois, to Dorothy (Nidelman), a radio actress, and Christopher Ford (born John William Ford), an actor turned advertising executive.",
  19. filmography: [1, 2]
  20. },
  21. {
  22. id: 3,
  23. name: "Carrie Fisher",
  24. birthday: "October 21, 1956",
  25. placeOfBirth: "Burbank, California, USA",
  26. bio:
  27. "Carrie Frances Fisher was born on October 21, 1956 in Beverly Hills, Los Angeles, California, to singers/actors Eddie Fisher and Debbie Reynolds.",
  28. filmography: [1]
  29. },
  30. {
  31. id: 4,
  32. name: "Karen Allen",
  33. birthday: "October 5, 1951",
  34. placeOfBirth: "Carrollton, Illinois, USA",
  35. bio:
  36. "Karen Jane Allen was born in Carrollton, rural southern Illinois, to Patricia (Howell), a teacher, and Carroll Thompson Allen, an FBI agent.",
  37. filmography: [2]
  38. },
  39. {
  40. id: 5,
  41. name: "George Lucas",
  42. birthday: "May 14, 1944",
  43. placeOfBirth: "Modesto, California, USA",
  44. bio:
  45. "George Walton Lucas, Jr. was raised on a walnut ranch in Modesto, California. His father was a stationery store owner and he had three siblings.",
  46. filmography: [1]
  47. },
  48. {
  49. id: 6,
  50. name: "Steven Spielberg",
  51. birthday: "December 18, 1946",
  52. placeOfBirth: "Cincinnati, Ohio, USA",
  53. bio:
  54. "Undoubtedly one of the most influential film personalities in the history of film, Steven Spielberg is perhaps Hollywood's best known director and one of the wealthiest filmmakers in the world.",
  55. filmography: [2]
  56. }
  57. ],
  58. movies: [
  59. {
  60. id: 1,
  61. title: "Star Wars: Episode IV - A New Hope",
  62. releaseDate: "25 May 1977",
  63. stars: [1, 2, 3],
  64. director: 5
  65. },
  66. {
  67. id: 2,
  68. title: "Raiders of the Lost Ark",
  69. releaseDate: "12 June 1981",
  70. stars: [2, 4],
  71. director: 6
  72. }
  73. ]
  74. };
  75.  
  76. module.exports = data;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement