Ajax API - fetch()

fetch('issue.json')
  .then(function(response){
    response.json().then(function(data){
      console.log('json data:',data);
    });
  })
 .catch(function(err) {
    console.log('Fetch Error :-S', err);
  });

results matching ""

    No results matching ""