Skip to content

Instantly share code, notes, and snippets.

@bugeyemonster
Created March 19, 2023 14:38
Show Gist options
  • Select an option

  • Save bugeyemonster/5c2738b91d1de8eed68094442c27d50d to your computer and use it in GitHub Desktop.

Select an option

Save bugeyemonster/5c2738b91d1de8eed68094442c27d50d to your computer and use it in GitHub Desktop.
JS Fetch
fetch('https://example.com/data.json')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console. Error(error));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment