Created
April 7, 2019 18:26
-
-
Save khaosdoctor/010ad81f716128e673c31dc0fbf9806d 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
var p = Promise.resolve() | |
.then(data => new Promise(function (resolve, reject) { | |
setTimeout(Math.random() > 0.5 ? resolve : reject, 1000) | |
})) | |
p.then(data => console.log('yay')) | |
p.catch(data => console.log('ops')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment