Created
April 27, 2018 07:14
-
-
Save arvindkalra/a1dc36104ead29c970b3b362fe4b2a09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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