Created
March 6, 2015 03:18
-
-
Save jaspervalero/35c25edd74e65237f4f3 to your computer and use it in GitHub Desktop.
ES6 Arrow Function - Lambda-ish Implicit Return Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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