Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Created August 1, 2014 03:35
Show Gist options
  • Save macikokoro/f0b51e73bb0f19b2a68d to your computer and use it in GitHub Desktop.
Save macikokoro/f0b51e73bb0f19b2a68d to your computer and use it in GitHub Desktop.
Another example of a function using the map method.
var modifiedNames = [ "Thomas Meeks",
"Gregg Pollack",
"Christine Wong",
"Dan McGaw" ];
modifiedNames.map(function(cell){ alert("Yo, " + cell + "!");});
//alerts Yo, name!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment