Skip to content

Instantly share code, notes, and snippets.

@rabmarjan
Created August 25, 2018 17:49
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 rabmarjan/248b064e01dfd71ea98497da1da0b374 to your computer and use it in GitHub Desktop.
Save rabmarjan/248b064e01dfd71ea98497da1da0b374 to your computer and use it in GitHub Desktop.
var a = 'Hello!';
first();
function first() {
var b = 'Hi';
second();
function second() {
var c = 'Hey!';
third();
}
}
function third() {
var d = 'John';
console.log(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment