Skip to content

Instantly share code, notes, and snippets.

@jyotiarora2610
Created July 5, 2018 08:27
Show Gist options
  • Save jyotiarora2610/28e8d0477f12e7e490a6166209b138b5 to your computer and use it in GitHub Desktop.
Save jyotiarora2610/28e8d0477f12e7e490a6166209b138b5 to your computer and use it in GitHub Desktop.
function foo () {
var bar = 'bar'
function baz () {
console.log(bar)
}
bam(baz)
}
function bam(baz) {
baz()
}
foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment