Skip to content

Instantly share code, notes, and snippets.

@pnavarrc
Created July 2, 2019 15:40
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 pnavarrc/4db83276338160c1f327bc3bbc068fc5 to your computer and use it in GitHub Desktop.
Save pnavarrc/4db83276338160c1f327bc3bbc068fc5 to your computer and use it in GitHub Desktop.
// In
[1, 2, 3].map(n => n * n);
// Out
[1, 2, 3].map(function(n) { return n * n; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment