Created
July 3, 2015 05:55
-
-
Save wilk/85e4c629943d78487f6b to your computer and use it in GitHub Desktop.
Arrow functions
This file contains 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 numbers = [0,1,2,3,4] | |
var increments = numbers.map(num => ++num) // [1,2,3,4,5] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment