Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 668 Bytes

File metadata and controls

31 lines (24 loc) · 668 Bytes

Problem 55:

let data = {
  Sophia: {
        id: 33,
        study: [
                {
                    primary: [
                    { school_name: "ABC primary school" },
                    { location: "Peters burg" },
                    ],
                },
                {
                    secondary: [
                    { school_name: "ABC secondary school" },

                    { location: "St Lorence" },
                    ],
                },
        ],
  },
};

How will you access Sophia’s secondary school location?

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