Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 28, 2019 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/df33620e8e98a88768e5c2beada3c830 to your computer and use it in GitHub Desktop.
Save parzibyte/df33620e8e98a88768e5c2beada3c830 to your computer and use it in GitHub Desktop.
function obtenerJsonConPromesas() {
return fetch("https://httpbin.org/json")
.then(respuesta => respuesta.json())
.then(json => {
return json;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment