I have an array of objects and within each object there is an answers section, but I need to hyperlink some certain words that should send the user to a website.
I have given an example below.
faq: [
{
answers: "The capital is London"
}
]
So in the example above if you could show me how I can hyperlink the word London within Javascript it would be very helpful.
Many thanks!