Created
February 19, 2022 21:14
-
-
Save ashwinkumar2438/3816676ef86ee53a23209f1d5399320a 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
Promise.resolve( 'create a resolved promise' ); | |
//Promise {<fulfilled>: 'create a resolved promise'} | |
Promise.reject( 'create a rejected promise' ); | |
//Promise {<rejected>: 'create a rejected promise'} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment