Skip to content

Instantly share code, notes, and snippets.

@krazov
Last active March 4, 2017 21:07
Show Gist options
  • Save krazov/bbd2039dc85a3625372bbc4e78925178 to your computer and use it in GitHub Desktop.
Save krazov/bbd2039dc85a3625372bbc4e78925178 to your computer and use it in GitHub Desktop.
The right way mapping: ES6 edition
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const newArray = array.map(item => item * 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment