Created
June 9, 2021 01:10
-
-
Save MeetMartin/b52d8a774b11b279d9aec98fa2beb37d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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