Created
January 15, 2021 01:50
-
-
Save nafeu/b4fd5465e8f941bad63fadee3850c1a8 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 result; | |
| result = await delay(() => '[RETURN VALUE 1]', 1000); | |
| console.log(result); // [RETURN VALUE 1] in result | |
| result = await delay(() => '[RETURN VALUE 2]', 1000); | |
| console.log(result); // [RETURN VALUE 2] in result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment