Skip to content

Instantly share code, notes, and snippets.

@geni429
Created August 7, 2018 09:45
Show Gist options
  • Save geni429/fdead9be6fb70f095096f723102975a4 to your computer and use it in GitHub Desktop.
Save geni429/fdead9be6fb70f095096f723102975a4 to your computer and use it in GitHub Desktop.
const arr = [1, 2, 3];
let foo;
foo = arr.map(function(ele) {
return ele + 1;
});
foo = arr.map(ele => ele + 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment