Last active
October 24, 2020 16:01
-
-
Save karlbeecken/1893c3c5b8e8ec8a6c92602d5c3be720 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="unwelt_smiley"> </span> <!-- put wherever you want --> | |
<script> | |
function random_smiley() | |
{ | |
let set = ["π","π£","π±","πΏ","π³","π»","π","β","π₯¦","π","π","π"] | |
let smiley = set[Math.floor(Math.random()*set.length)]; | |
document.getElementById("unwelt_smiley").innerHTML = smiley; | |
} | |
random_smiley(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment