Skip to content

Instantly share code, notes, and snippets.

@Fouzyyyy
Last active October 14, 2017 18:59
Show Gist options
  • Save Fouzyyyy/d0b9fa4bb960d54a70427ded22849455 to your computer and use it in GitHub Desktop.
Save Fouzyyyy/d0b9fa4bb960d54a70427ded22849455 to your computer and use it in GitHub Desktop.
Before and after
// Before
let multiplyByItself = (number) => {
return number * number;
};
// After
let multiplyByItself = number => number * number;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment