I want to read data from URL using JavaScript.
below is my code,
function Parent() {
  const [data, setData] = React.useState(null);
  const url = 'someurl';
  React.useEffect(() => {
      fetch(url)
        .then(res => JSON.stringify(res))
        .then(data => setData(data);
        });
    if (data) {
      console.log('data', data);
    }
  }
logging the data state would give the result like below,
{
  "count": 2,
  "results": [{
      "title": "title1",
      "characters": [
        "character1",
      ],
    },
    {
      "title": "title2",
      "characters": [
        "character3",
      ],
    },
  ]
}
How can I read results object from URL?
 
     
     
     
    