Skip to content

Instantly share code, notes, and snippets.

@arvindkalra
Created April 27, 2018 07:14
Show Gist options
  • Save arvindkalra/a1dc36104ead29c970b3b362fe4b2a09 to your computer and use it in GitHub Desktop.
Save arvindkalra/a1dc36104ead29c970b3b362fe4b2a09 to your computer and use it in GitHub Desktop.
// Calling Function from Above the function defination
Foo1();
function Foo1(){
console.log("Inside Foo1");
}
// Calling Function from Below the function defination
Foo1();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment