Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:06
Show Gist options
  • Save Tombarr/0df3d0ae985d0fded18fab786b7e20f4 to your computer and use it in GitHub Desktop.
Save Tombarr/0df3d0ae985d0fded18fab786b7e20f4 to your computer and use it in GitHub Desktop.
Map & Reduce in Javascript
[1, 2, 3, 4, 5].map((x) => x * x).reduce((x, s) => x + s); // 55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment