Skip to content

Instantly share code, notes, and snippets.

@krazov
Created March 4, 2017 20:32
Show Gist options
  • Save krazov/8689ad02d6fc1d9cea576fc2e332c63c to your computer and use it in GitHub Desktop.
Save krazov/8689ad02d6fc1d9cea576fc2e332c63c to your computer and use it in GitHub Desktop.
Pseudo functional mapping
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var newArray = [];
array.forEach(function (item) {
newArray.push(item * 2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment