Skip to content

Instantly share code, notes, and snippets.

@biilmann
Created April 4, 2013 04:05
Show Gist options
  • Select an option

  • Save biilmann/5307745 to your computer and use it in GitHub Desktop.

Select an option

Save biilmann/5307745 to your computer and use it in GitHub Desktop.
function example4() {
var f = function() { console.log("First f"); }
return f();
var f = function() { console.log("Second f"); }
}
example4();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment