Skip to content

Instantly share code, notes, and snippets.

@davidbonnet
Last active June 24, 2017 10:27
Show Gist options
  • Save davidbonnet/9809828 to your computer and use it in GitHub Desktop.
Save davidbonnet/9809828 to your computer and use it in GitHub Desktop.
CoffeeScript local variables bug?
# This code…
a = 42
f = ->
a = 42
return
# …compiles to…
a = 42;
f = function() {
a = 42;
};
# …instead of this:
a = 42;
f = function() {
var a;
a = 42;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment