Skip to content

Instantly share code, notes, and snippets.

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