Created
November 9, 2021 10:35
-
-
Save sakahukamaki/b56a6c2529c3491eecf107e7fff9363f 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
const title: string = '今日の夕ご飯を決めるガチャ' | |
console.log(title) | |
console.log('--------------------------') | |
const menu: string[] = ['野菜を鍋にする', 'ラーメンをゆでる', 'baseの麺']; | |
menu.push('出前館 肉') | |
menu.push('出前館 麺') | |
menu.push('出前館 ピザ') | |
menu.push('baseのパン') | |
menu.push('ファミレスにいく') | |
menu.push('肉を食べに行く') | |
menu.push('しゃぶのしゃぶを食べに行く') | |
menu.push('寿司を食べに行く') | |
console.log(menu[Math.floor(Math.random() * menu.length)]) | |
console.log('いってらっしゃーーい') | |
console.log('--------------------------') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment