Skip to content

Instantly share code, notes, and snippets.

@jaspervalero
Created March 6, 2015 03:18
Show Gist options
  • Save jaspervalero/35c25edd74e65237f4f3 to your computer and use it in GitHub Desktop.
Save jaspervalero/35c25edd74e65237f4f3 to your computer and use it in GitHub Desktop.
ES6 Arrow Function - Lambda-ish Implicit Return Example
var square = number => number * number;
console.log( square( 5 ) ); // 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment