Skip to content

Instantly share code, notes, and snippets.

@rohit012
Created January 16, 2017 10:06
Show Gist options
  • Save rohit012/04d1e0b580b4eee27fd69abc2676436b to your computer and use it in GitHub Desktop.
Save rohit012/04d1e0b580b4eee27fd69abc2676436b to your computer and use it in GitHub Desktop.
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