Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created March 14, 2021 15:41
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 ssougnez/3e92a926d954bd56266fb26dad69fbbc to your computer and use it in GitHub Desktop.
Save ssougnez/3e92a926d954bd56266fb26dad69fbbc to your computer and use it in GitHub Desktop.
function foo() {
console.log('Hello');
bar();
}
function bar() {
console.log('Good bye')
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment