Last active
December 1, 2019 12:52
-
-
Save NateSeymour/d075ba2789efd7dfb5c6cb51751d9872 to your computer and use it in GitHub Desktop.
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
function myMessage() { | |
sleep(1000); // Theoretical function that makes the script wait 1000ms | |
console.log('My message'); | |
} | |
myMessage(); | |
console.log('I like javascript'); | |
/* output | |
My message | |
I like javascript | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment