Skip to content

Instantly share code, notes, and snippets.

@Gaafar
Last active June 18, 2019 16:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Gaafar/5f10e86ab571dfdad7084c5df0663435 to your computer and use it in GitHub Desktop.
Save Gaafar/5f10e86ab571dfdad7084c5df0663435 to your computer and use it in GitHub Desktop.
syntax-promise
const makeRequest = () =>
getJSON()
.then(data => {
console.log(data)
return "done"
})
makeRequest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment