Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Created August 1, 2014 02:01
Show Gist options
  • Save macikokoro/ddfe8342bcc60c9d1eda to your computer and use it in GitHub Desktop.
Save macikokoro/ddfe8342bcc60c9d1eda to your computer and use it in GitHub Desktop.
Arrays and map()
var numbers = [12, 4, 3, 9, 8, 6, 10, 1];
var results = numbers.map(function(arrayCell) {return arrayCell * 2;});
console.log(results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment