Skip to content

Instantly share code, notes, and snippets.

@ms314006
Created January 16, 2019 14:41
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/5bde5ca123455e9abe4caf6fc3ba675b to your computer and use it in GitHub Desktop.
Save ms314006/5bde5ca123455e9abe4caf6fc3ba675b to your computer and use it in GitHub Desktop.
const newPromise = new Promise((resolve, reject)=>{
setTimeout(()=>{resolve('changed')}, 3000)
}).then((data)=>{
console.log(data)
//第二個Promise
return new Promise((resolve, reject)=>{
setTimeout(()=>{resolve('last ' + data)},2000)
}).then((lastData)=>{
return lastData
})
}).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