Skip to content

Instantly share code, notes, and snippets.

@ms314006
Last active January 28, 2019 05:51
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/2070838410193fb9042f1e2dca9b4863 to your computer and use it in GitHub Desktop.
Save ms314006/2070838410193fb9042f1e2dca9b4863 to your computer and use it in GitHub Desktop.
const newPromise = new Promise((resolve, reject)=>{
setTimeout(()=>{resolve('changed')}, 3000)
}).then((data)=>{
console.log(data) // 'changed'
return 'last changed'
}).then((data)=>{
console.log(data) // 'last changed'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment