Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 487 Bytes

File metadata and controls

35 lines (27 loc) · 487 Bytes

Problem 57:

let activities = {
  activity1: [
    {
      name: "listen on spotify",
      song_list: {
        song_1: "abc",
        song_2: "bcd",
      },
      id: 1,
    },
    {
      name: "listen music through bot",

      song_list: {
        song_1: "wxy",
        song_2: "xyz",
      },
      id: 2,
    },
  ],
};

How will you get the output

  1. abc
  2. xyz

problem provider : https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view