Last active
March 7, 2023 05:11
-
-
Save jonaskahn/75e0fdb8cf63d5aa7813a4a67c522ab7 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<body> | |
<script> | |
function hello(name) { | |
let phrase = `Hello, ${name}!`; | |
say(phrase); | |
} | |
function say(phrase) { | |
alert(`** ${phrase} **`); | |
} | |
hello("John"); | |
</script> | |
An example for debugging. | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment