ES6 Promise は引数としてコールバックを受け取ります。
var promise = new Promise(function(resolve, reject) {
// do a thing, possibly async, then…
if (/* everything turned out fine */) {
resolve("Stuff worked!");
}
else {
reject(Error("It broke"));
}
});
これらのcallback-you-pass-to-create-a-promiseの用語はありますか?