Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active August 6, 2019 20:24
Show Gist options
  • Save ionelh/dcc95f9804512dd285fe425a6d2918a1 to your computer and use it in GitHub Desktop.
Save ionelh/dcc95f9804512dd285fe425a6d2918a1 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
}
function httpHandler() {
// some code here
}
function clickHandler() {
// some more code here
}
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment