-
-
Save confluencepoint/53cde2b997ff8ab18838ea63c8c143e6 to your computer and use it in GitHub Desktop.
Random lunch status textexpander snippet
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 emoji = [ | |
| "🍔", | |
| "🍕", | |
| "🌭", | |
| "🥪", | |
| "🥗", | |
| "🌯", | |
| "🍱", | |
| "🍝", | |
| "🍜" | |
| ]; | |
| const count = emoji.length; | |
| const randomIndex = Math.floor(Math.random() * count); | |
| const randomEmoji = emoji[randomIndex]; | |
| '/status ' + randomEmoji + ' Lunch'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment