Last active
January 9, 2019 00:39
-
-
Save robertcoopercode/b1a414cd0cc19ef2adf3596faf0de2b8 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
// Default function parameters | |
const tweetLength = (message = 'A default tweet') => { | |
return message.length; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment