-
-
Save chronikum/14b25763ad35d852dd72625c8539ce7a 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
<span id="umwelt_smiley"> </span> <!-- put wherever you want --> | |
<script> | |
function random_smiley() | |
{ | |
let set = ["π","π£","π±","πΏ","π³","π»","π","β","π₯¦","π","π","π"] | |
let smiley = set[Math.floor(Math.random()*set.length)]; | |
document.getElementById("umwelt_smiley").innerHTML = smiley; | |
} | |
random_smiley(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment