Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Last active April 7, 2019 16:07
Show Gist options
  • Save khaosdoctor/4cd7411332e97c7cfcecf29ec28ed0f2 to your computer and use it in GitHub Desktop.
Save khaosdoctor/4cd7411332e97c7cfcecf29ec28ed0f2 to your computer and use it in GitHub Desktop.
const p = new Promise((resolve, reject) => {
setTimeout(() => resolve('yay'), 5000)
})
p
.then((res) => {})
.catch((rej) => {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment