Last active
May 18, 2020 02:50
-
-
Save patrickdevivo/d327e8c072ed8bc100b842c32cef6454 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
| const names = ["world", "patrick", "deno", "adhoc"] | |
| names.forEach(n => console.log(`hello, ${n}!`)) |
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
| setInterval(() => console.log("🎉", new Date()), 500) |
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
| console.log("starting") | |
| setTimeout(() => console.log("finished"), 4000)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment