Skip to content

Instantly share code, notes, and snippets.

@juniorgarcia
Last active April 15, 2019 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juniorgarcia/b843225ca545553f360250f57a7196be to your computer and use it in GitHub Desktop.
Save juniorgarcia/b843225ca545553f360250f57a7196be to your computer and use it in GitHub Desktop.
Artigo - Introdução a programação funcional com JavaScript - Exemplo 1
let numbers = [1, 5, 10];
const doubleValue = x => x * 2;
console.log(numbers.map(doubleValue)); // [2, 10, 20]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment