Last active
February 5, 2021 10:59
-
-
Save gulhe/2adae5221c57ef8629213f0f6e3c8c58 to your computer and use it in GitHub Desktop.
Emoji roller
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
const globes = ["π", "π", "π"]; | |
const moons =["π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π"]; | |
const plainClocks = ["π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π", | |
"π"]; | |
const clocks = ["π","π§", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π ", | |
"π","π‘", | |
"π","π’", | |
"π","π£", | |
"π","π€", | |
"π","π₯", | |
"π","π¦"]; | |
const universalLove = ["β€οΈ", "π§‘", "π", "π", "π", "π"]; | |
const cardinals = [ | |
"β‘οΈ", | |
"βοΈ", | |
"β¬οΈ", | |
"βοΈ", | |
"β¬ οΈ", | |
"βοΈ", | |
"β¬οΈ", | |
"βοΈ"]; |
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 roll(array){ | |
array.rollIndex=(array.rollIndex||0)%array.length; | |
return array[array.rollIndex++]; | |
} |
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
setInterval(_=> document.body.innerHTML=roll(moons), 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment