I'm trying to target the specific items in each object within an array, in order to use them as variables elsewhere. How can I create variables using each of the items? Something like var thisThing = things.title; ?
things: [
{title: "The title for this thing", url: "https://stackoverflow.com"},
{title: "The title for this thing", url: "https://stackoverflow.com"},
{title: "The title for this thing", url: "https://stackoverflow.com"},
{title: "The title for this thing", url: "https://stackoverflow.com"}
]