Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 27, 2020 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reime005/59ec4c3e7177c197301eed0321afc6da to your computer and use it in GitHub Desktop.
Save reime005/59ec4c3e7177c197301eed0321afc6da to your computer and use it in GitHub Desktop.
function printSomething0(input) {
console.log(input);
}
const printSomething1 = input => console.log(input);
const printSomething2 = function printSomething2(input) {
console.log(input);
}
printSomething0('test0'); // prints 'test0'
printSomething1('test1'); // prints 'test1'
printSomething2('test2'); // prints 'test2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment