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 promise = new Promise(function(resolve, reject){ | |
var goodGift = true; | |
if(goodGift){ | |
// Your promise was reolved! | |
var gift = {"message": "Here is an iPhone12!"} | |
resolve(gift); | |
} | |
else { | |
// Your promise was rejected! |
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
license: AGPL-3.0 |