Last active
October 14, 2017 18:59
-
-
Save Fouzyyyy/d0b9fa4bb960d54a70427ded22849455 to your computer and use it in GitHub Desktop.
Before and after
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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