Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created January 4, 2017 00:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericelliott/926db53472105178c964d6aee324f629 to your computer and use it in GitHub Desktop.
Save ericelliott/926db53472105178c964d6aee324f629 to your computer and use it in GitHub Desktop.
Double mapping
const double = n => n * 2;
const doubleMap = numbers => numbers.map(double);
console.log(doubleMap([2, 3, 4])); // [ 4, 6, 8 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment