Skip to content

Instantly share code, notes, and snippets.

@Fouzyyyy
Last active October 14, 2017 13:54
Show Gist options
  • Save Fouzyyyy/0bc36eac5acb624691bf46bb8d128289 to your computer and use it in GitHub Desktop.
Save Fouzyyyy/0bc36eac5acb624691bf46bb8d128289 to your computer and use it in GitHub Desktop.
Arrow functions description
function foo(arg) {
console.log('hi ' + arg + ', nice to meet you!');
}
// VS
let bar = (arg) => {
console.log('hi ' + arg + ', nice to meet you!');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment