I am fetching some data from API and it is returning me results like " how can I convert it to normal form ' " '
const results = [
{ question: ' movie "The Revenant"?' },
{ question: ' game "Roblox" released?' },
{ question: '"A rainy Lithuanian / Is dancing as an Indian"' },
];
export default function App() {
return (
<View style={styles.container}>
{results.map((q) => (
<Text> {q.question} </Text>
))}
</View>
);
}
this is what I am getting
