Last active
September 21, 2017 19:45
-
-
Save rbren/ab3c9bcab2ad94d0943df9b105fb9685 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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