Skip to content

Instantly share code, notes, and snippets.

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