Skip to content

Instantly share code, notes, and snippets.

@patrickdevivo
Last active May 18, 2020 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickdevivo/d327e8c072ed8bc100b842c32cef6454 to your computer and use it in GitHub Desktop.
Save patrickdevivo/d327e8c072ed8bc100b842c32cef6454 to your computer and use it in GitHub Desktop.
const names = ["world", "patrick", "deno", "adhoc"]
names.forEach(n => console.log(`hello, ${n}!`))
setInterval(() => console.log("🎉", new Date()), 500)
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