Created
December 3, 2021 22:36
-
-
Save popcorn245/fa89c1b8aebedf03e09899426da80cf7 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
function heyThere(message = "My default message") { | |
alert(message); | |
} | |
heyThere("Custom Message"); | |
heyThere(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment