Skip to content

Instantly share code, notes, and snippets.

@MeetMartin
Created June 9, 2021 01:10
Show Gist options
  • Save MeetMartin/b52d8a774b11b279d9aec98fa2beb37d to your computer and use it in GitHub Desktop.
Save MeetMartin/b52d8a774b11b279d9aec98fa2beb37d to your computer and use it in GitHub Desktop.
const expression = input => input.toLowerCase();
const expression2 = function(input) {
return input.toLowerCase();
};
const statement = () => console.log('hello world');
const statement2 = function() {
console.log('hello world');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment