Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Created March 10, 2018 13:14
Show Gist options
  • Save DavidMellul/8a0c130f609bea8023d443aa21e72380 to your computer and use it in GitHub Desktop.
Save DavidMellul/8a0c130f609bea8023d443aa21e72380 to your computer and use it in GitHub Desktop.
let x = [1,2,3,4,5];
let y = x.map ( element => element*2 );
console.log(y);
// => [2,4,6,8,10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment