Skip to content

Instantly share code, notes, and snippets.

@jhgaylor
Forked from westonplatter/example.coffee
Last active December 29, 2015 01:39
Show Gist options
  • Select an option

  • Save jhgaylor/7594958 to your computer and use it in GitHub Desktop.

Select an option

Save jhgaylor/7594958 to your computer and use it in GitHub Desktop.
x = 1
foo = ->
x = 2
return
foo()
console.log x; #prints 2
var x=1;
var foo = function (){
var x=2; return;
};
foo();
console.log(x); //prints 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment