How can I edit and render a JSON property?

Hi,

I’ve done an API call that gives me an Object.
I would like to render one of the property and edit after the API because within the quote the APP renders the

tags and recognize it as Object and not as HTML string.

Which is the best way to manage this problem?
this is the link to the repo in github.com.markgatte.randomquote

JSON.parse(some_JSON_String)

Except you’re already doing that with this line of code:

const items= await api_call.json();

Edit: what do you mean? That you are getting HTML strings back as one of the fields rather than just text?

Basically, I’d like to take of the ‘p’ tags that coming with the json after the API request. How can I do it ?