Created
March 8, 2020 10:42
-
-
Save tanisha03/c57d8e034f3e4bc45491c8a4742e5f98 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
| function sayfirst(){ | |
| setTimeout(function(){ | |
| console.log("First")},500); | |
| } | |
| function saySecond(){ | |
| console.log("Second") } | |
| sayFirst(); | |
| saySecond(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment