Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active August 6, 2019 19:14
Show Gist options
  • Save ionelh/9ff8469f720cbe12fc478e8f66866ae1 to your computer and use it in GitHub Desktop.
Save ionelh/9ff8469f720cbe12fc478e8f66866ae1 to your computer and use it in GitHub Desktop.
Gist for medium article "How JavaScript Works"
function a() {
// some code
b();
// some more code
}
function b() {
// some code
}
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment