[おみくじ-button.icon]
と書くと、icon-buttonになりますbutton.jsfunction omikuji () {
const rand = Math.floor(Math.random() * 100);
let msg = "大吉";
if (rand > 9) msg = "中吉";
if (rand > 29) msg = "吉";
if (rand > 69) msg = "凶";
if (rand > 89) msg = "大凶";
alert(msg);
}
omikuji();