Skip to content

Instantly share code, notes, and snippets.

@rw
Created May 23, 2012 01:42
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 rw/2772779 to your computer and use it in GitHub Desktop.
Save rw/2772779 to your computer and use it in GitHub Desktop.
Interesting coffeescript operator precedence levels
console.log a for a in [1,2]
> 1
> 2
console.log (a for a in [1,2])
> [1, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment