Skip to content

Instantly share code, notes, and snippets.

@chamatt
Created November 28, 2018 15:46
Show Gist options
  • Select an option

  • Save chamatt/f1bb81b392a5fb06c43997381e8eb3ec to your computer and use it in GitHub Desktop.

Select an option

Save chamatt/f1bb81b392a5fb06c43997381e8eb3ec to your computer and use it in GitHub Desktop.
Exemplo de Fetch
fetch("https://jsonplaceholder.typicode.com/posts")
.then(resposta => resposta.json())
.then(json => FuncaoQueSeraExecutada(json));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment