Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/362f9e27fe3727c1859402797f4f61f2 to your computer and use it in GitHub Desktop.
Save manekinekko/362f9e27fe3727c1859402797f4f61f2 to your computer and use it in GitHub Desktop.
const luke = "luke";
let jedi;
function foo(){
const vador = "je suis ton père";
function bar(){
console.log(luke, vador);
}
jedi = bar;
}
foo();
jedi();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment