Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. (4) [{…}, {…}, {…}, {…}]
  2. 0: {program_id: "646", title: "Straight No Chaser", short_description: "Underground Hip Hop", description: "Funky sounds from the hip-hop diaspora.", start_time: "00:00",day : "Tuesday"}
  3. 1: {program_id: "1167", title: "Jazz Boulevard", short_description: "Classic jazz, blues, world, and acid jazz.", description: "CanCon friendly ... award-winning weekly syndicate…classic jazz tracks, blues, world, and acid jazz.", start_time: "04:00", day : "Tuesday", …}
  4. 2: {program_id: "1167", title: "Jazz Boulevard", short_description: "Classic ja", description: "CanConasdasd sd", start_time: "04:00", day : "Friday", …}
  5.  
  6. {Sunday: Array(14), Monday: Array(18), Tuesday: Array(17), Wednesday: Array(19), Thursday: Array(19), …}
  7.  
  8. Friday: (19) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  9. Monday: (18) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  10. Saturday: (17) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  11. Sunday: (14) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  12. Thursday: (19) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  13. Tuesday: (17) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  14. Wednesday: (19) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
  15. __proto__: Object
  16.  
  17. const arrayToObject = (array, keyField) =>
  18. array.reduce((obj, item) => {
  19. obj[item[keyField]] = item
  20. return obj
  21. }, {})
  22. const favouritesWithDaysAsObject = arrayToObject(favs, "day")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement