Skip to content

Instantly share code, notes, and snippets.

@Chizaram-Igolo
Created July 20, 2021 05:27
Show Gist options
  • Save Chizaram-Igolo/50884aacea99be009a9f28fa448998bc to your computer and use it in GitHub Desktop.
Save Chizaram-Igolo/50884aacea99be009a9f28fa448998bc to your computer and use it in GitHub Desktop.
fetch("https://jsonplaceholder.typicode.com/todos/")
.then((response) => response.json())
.then(data => {
console.log(data)
})
.catch((err) => {
console.log('rejected', err)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment