Skip to content

Instantly share code, notes, and snippets.

@ms314006
Created January 16, 2019 14:34
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 ms314006/34b3748dcd83707c3734b85233d48311 to your computer and use it in GitHub Desktop.
Save ms314006/34b3748dcd83707c3734b85233d48311 to your computer and use it in GitHub Desktop.
const newPromise = new Promise((resolve, reject)=>{
setTimeout(()=>{
if(Math.random() > 0.5){
resolve('changed')
}
else{
reject('error')
}
}, 3000)
}).then((data)=>{
console.log(data)
}).catch((error)=>{
console.log(error)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment