Skip to content

Instantly share code, notes, and snippets.

@rbren
Last active September 21, 2017 19:45
Show Gist options
  • Save rbren/ab3c9bcab2ad94d0943df9b105fb9685 to your computer and use it in GitHub Desktop.
Save rbren/ab3c9bcab2ad94d0943df9b105fb9685 to your computer and use it in GitHub Desktop.
let p = Promise.resolve('a');
p.then(_ => 'b');
p.then(result => {
console.log(result) // 'a'
})
let q = Promise.resolve('a');
q = q.then(_ => 'b');
q = q.then(result => {
console.log(result) // 'b'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment