Skip to content

Instantly share code, notes, and snippets.

@Fouzyyyy
Last active October 14, 2017 14:36
Show Gist options
  • Save Fouzyyyy/49e6267886a6b6db139d4a7ee57184e4 to your computer and use it in GitHub Desktop.
Save Fouzyyyy/49e6267886a6b6db139d4a7ee57184e4 to your computer and use it in GitHub Desktop.
An arrow function is a function expression!
// We can do this
let bar = (arg) => {
console.log('hi ' + arg + ', nice to meet you!');
};
// But we can't do that!
function 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