Skip to content

Instantly share code, notes, and snippets.

@Arkhipenka
Created August 28, 2019 15:05
Show Gist options
  • Save Arkhipenka/b3984bda13290b9215a036cccbd4062f to your computer and use it in GitHub Desktop.
Save Arkhipenka/b3984bda13290b9215a036cccbd4062f to your computer and use it in GitHub Desktop.
function map(arr, operation){
let array = [];
for (var i = 0; i < arr.length; i++) {
array.push(arr[i])
}
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment