Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Created September 12, 2016 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsudekum/9b6c0014c9b16462598d30ecbbae9991 to your computer and use it in GitHub Desktop.
Save bsudekum/9b6c0014c9b16462598d30ecbbae9991 to your computer and use it in GitHub Desktop.
var foo = items.map(function(item) {
return item + 1;
});
var foo = items.map((item) => {
return item + 1;
});
var foo = items.map(item => item + 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment