Skip to content

Instantly share code, notes, and snippets.

@ORESoftware
Created February 23, 2022 01:06
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 ORESoftware/58c42deffa129957cf98c3e767b92979 to your computer and use it in GitHub Desktop.
Save ORESoftware/58c42deffa129957cf98c3e767b92979 to your computer and use it in GitHub Desktop.
function declaration order matters Tom! :)
function first(){
second();
}
first();
function second(){
console.log('the second')
}
// the above will throw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment