Last active
March 28, 2018 18:55
-
-
Save aryak007/b3e7a2fe47fcd219963dc2346d142a14 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
| function outer() { | |
| var inner = function() | |
| { | |
| console.log(stark); | |
| } | |
| var stark = "Jon Snow, the one true king"; | |
| return inner; | |
| } | |
| outer()(); //Q1. What will be the output of this example |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment