Skip to content

Instantly share code, notes, and snippets.

@ristaa
Created September 12, 2018 11:32
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 ristaa/3ab5c456e9c6ffde2730e499a0b2a3ce to your computer and use it in GitHub Desktop.
Save ristaa/3ab5c456e9c6ffde2730e499a0b2a3ce to your computer and use it in GitHub Desktop.
Usage of map Helper
let arr = [1, 2, 3, 4, 5];
let doubled = arr.map(num => {
return num * 2;
});
console.log(doubled); // [2, 4, 6, 8, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment