Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 10, 2014 19:52
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 devdays/d84946b38fbf3c050ee1 to your computer and use it in GitHub Desktop.
Save devdays/d84946b38fbf3c050ee1 to your computer and use it in GitHub Desktop.
Object Javascript ECMAScript 6 arrow functions
//today
let squares = [1, 2 , 3].map(function (x) {
return x * x
));
// is simplified to
let squares = [1, 2, 3].mpa (x => x * x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment