Skip to content

Instantly share code, notes, and snippets.

@Obayanju
Last active March 30, 2017 00:26
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 Obayanju/ebaf29eca70168c1e526c6a6688abc05 to your computer and use it in GitHub Desktop.
Save Obayanju/ebaf29eca70168c1e526c6a6688abc05 to your computer and use it in GitHub Desktop.
function foo (a) {
console.log(a);
b = 3;
function bar(c) {
console.log(b + c);
}
bar(4);
}
foo(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment