I am trying o get data from SWAPI to integrate with another platform using javascript. I have some saved some links inside a variable while getting data.
a = {
items: [
{ item: "https://swapi.dev/api/people/5/" },
{ item: "https://swapi.dev/api/people/68/" },
{ item: "https://swapi.dev/api/people/81/" },
],
};
From this code how do I extract the links only and save in a variable? I only need links. I tried object.values
, object.keys()
but couldn't find a way. The platform I am using doesn't support fetch()
or $.each
.
I am not quite sure how to get it done using for
loop. Any assistance will be highly appreciated!