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