Created
January 16, 2017 10:06
-
-
Save rohit012/04d1e0b580b4eee27fd69abc2676436b to your computer and use it in GitHub Desktop.
This file contains 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 myPromise = new Promise((resolve, reject) => { | |
setTimeout(() => { | |
resolve(10); | |
}, 1000); | |
}); | |
// handler can't change promise, just value | |
myPromise.then((result) => { | |
console.log(result); | |
}).catch((err) => { | |
console.log(err); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment