Skip to content

Instantly share code, notes, and snippets.

@ambroseus
Last active September 20, 2021 08:50
Show Gist options
  • Save ambroseus/643bf1048cd7c43f980771c1dcb7327b to your computer and use it in GitHub Desktop.
Save ambroseus/643bf1048cd7c43f980771c1dcb7327b to your computer and use it in GitHub Desktop.
Happy Birthday, Cray!
<!doctype html>
<html lang="en">
<body>
<script>
const HB = "Happy Birthday"
const name = "Cray"
let i = 0;
while (i < 2) {
document.write(`${HB} to you.<br/>`)
i++
}
document.write(`${HB} dear <b>${name}</b>,<br/>`)
document.write(`${HB} to you!`)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment