Skip to content

Instantly share code, notes, and snippets.

@liammclennan
Created May 29, 2011 10:18
Show Gist options
  • Save liammclennan/997628 to your computer and use it in GitHub Desktop.
Save liammclennan/997628 to your computer and use it in GitHub Desktop.
JavaScript Arrow Lambda Syntax
// from http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax
// Empty arrow function is minimal-length
let empty = ->;
let square = (x) -> x * x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment