Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created December 29, 2018 15:35
Show Gist options
  • Save zeptobook/465fce06af3c60721d5173f3b8d2b2ed to your computer and use it in GitHub Desktop.
Save zeptobook/465fce06af3c60721d5173f3b8d2b2ed to your computer and use it in GitHub Desktop.
array.map()
var numbers1 = [10, 20, 30, 40, 50];
var numbers3 = numbers1.map(function(value, index, array){
return value * 3;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment