Id like to turn a list of dictionaries to a list that only contains the values to each url
property.
So it would work like this:
Input
[
{"id": 0, "url": "https://example.com/0"},
{"id": 1, "url": "https://example.com/1"},
{"id": 2, "url": "https://example.com/2"},
{"id": 3, "url": "https://example.com/3"},
]
Output
[
"https://example.com/0",
"https://example.com/1",
"https://example.com/2",
"https://example.com/3",
]
With Javascript I would just use map
and return the url
values.