Skip to content

Instantly share code, notes, and snippets.

@wilk
Created July 3, 2015 05:55
Show Gist options
  • Save wilk/85e4c629943d78487f6b to your computer and use it in GitHub Desktop.
Save wilk/85e4c629943d78487f6b to your computer and use it in GitHub Desktop.
Arrow functions
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