Created
January 26, 2019 06:48
-
-
Save irridescentrambler/34e85ae2f77aa071698d858ec0a00dea to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let promise1 = new Promise((resolve, reject) => { | |
setInterval(() => { | |
reject("This is rejected"); | |
}, 10000); | |
}); | |
promise1.catch((errorResponse) => { | |
console.log(errorResponse); | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment