Skip to content

Instantly share code, notes, and snippets.

@asnimansari
Created June 14, 2019 20:00
Show Gist options
  • Save asnimansari/601d84cd9a6ebdc013dad6975f5d3fef to your computer and use it in GitHub Desktop.
Save asnimansari/601d84cd9a6ebdc013dad6975f5d3fef to your computer and use it in GitHub Desktop.
const foo = () => console.log("First");
const bar = () => setTimeout(() => console.log("Second"));
const baz = () => console.log("Third");
bar();
foo();
baz();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment