Skip to content

Instantly share code, notes, and snippets.

@nicolasblanco
Created February 18, 2017 14:39
Show Gist options
  • Select an option

  • Save nicolasblanco/b8020817eeb6ca9e6fcb40638a45fa27 to your computer and use it in GitHub Desktop.

Select an option

Save nicolasblanco/b8020817eeb6ca9e6fcb40638a45fa27 to your computer and use it in GitHub Desktop.
[1, 2, 3, 4].map(res => res * 2)
// [2, 4, 6, 8]
['number', 'of', 'letters'].reduce((m, o) => m += o.length, 0)
// 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment