Skip to content

Instantly share code, notes, and snippets.

@Fouzyyyy
Last active October 14, 2017 18:47
Show Gist options
  • Save Fouzyyyy/e65e1ba0ce75c90d9340276438ff543c to your computer and use it in GitHub Desktop.
Save Fouzyyyy/e65e1ba0ce75c90d9340276438ff543c to your computer and use it in GitHub Desktop.
Arrow function with no parentheses
// The number parameter does not need to be surrounded by parentheses
let multiplyByItself = number => {
return number * number;
};
alert(multiplyByItself(2)); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment