Skip to content

Instantly share code, notes, and snippets.

@oliversd
Last active January 6, 2019 17:45
Show Gist options
  • Save oliversd/95f57a07cfe7eb890a597f033073ce3c to your computer and use it in GitHub Desktop.
Save oliversd/95f57a07cfe7eb890a597f033073ce3c to your computer and use it in GitHub Desktop.
//ES6 Arrow function one-liner
let doubleNumbers = [1,2,3,4,5].map(number => number*2);
//ES6 Arrow function multiple arguments
handleClick((event, seconds) => {
 event.preventDefault();
 displayFireworks();
 showAnimation(seconds);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment