Skip to content

Instantly share code, notes, and snippets.

@Fouzyyyy
Created October 14, 2017 18:20
Show Gist options
  • Save Fouzyyyy/707d79f783471e008c906cc13d0af771 to your computer and use it in GitHub Desktop.
Save Fouzyyyy/707d79f783471e008c906cc13d0af771 to your computer and use it in GitHub Desktop.
Arrow function with one argument v1
// The simplest way
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