Last active
December 1, 2019 12:52
-
-
Save NateSeymour/d075ba2789efd7dfb5c6cb51751d9872 to your computer and use it in GitHub Desktop.
Revisions
-
NateSeymour revised this gist
Dec 1, 2019 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,6 @@ function myMessage() { } myMessage(); console.log('I like javascript'); /* output -
NateSeymour revised this gist
Dec 1, 2019 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,5 @@ console.log('I like javascript'); /* output My message I like javascript */ -
NateSeymour revised this gist
Dec 1, 2019 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,7 @@ myMessage(); console.log('I like javascript'); /* output My message I like javascript */ -
NateSeymour created this gist
Dec 1, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ function myMessage() { sleep(1000); // Theoretical function that makes the script wait 1000ms console.log('My message'); } myMessage(); console.log('I like javascript'); /* output I like javascript My message */