Hello there! I am currently working with an array called artists[]
which consists of Proxy objects. Each Proxy object is also an array of objects, with each inner object containing a property called "artistName"
. Interestingly, the third Proxy has two of these properties.
https://i.sstatic.net/o6YL3.png
I am trying to achieve the following structure:
[
["Queen"],
["Pink Floyd"],
["Elvis Presley", "Pink Floyd"],
]
This means that I want arrays of artist names grouped by their corresponding Proxy objects. Any assistance on how to accomplish this would be greatly appreciated!