Skip to content

Instantly share code, notes, and snippets.

@nsacerdote
Last active October 2, 2020 12:38
Show Gist options
  • Save nsacerdote/0956a0b338d0dd1b82a3d6c3c26fc4bb to your computer and use it in GitHub Desktop.
Save nsacerdote/0956a0b338d0dd1b82a3d6c3c26fc4bb to your computer and use it in GitHub Desktop.
function doSomething() {
return new Promise((resolve, reject) => {
fetch('http://example.com/movies.json')
.then(response => resolve(response.json()))
.catch(err => reject(err));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment