Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fouzyyyy/ed5382689618c398760106353dcef3eb to your computer and use it in GitHub Desktop.
Save Fouzyyyy/ed5382689618c398760106353dcef3eb to your computer and use it in GitHub Desktop.
Arrow function with a single return statement
let multiplyByItself = number => number * number;
alert(multiplyByItself(2)); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment