今天晚饭时在犹豫吃什么随手写的一个抽签函数,有选择恐惧症的小伙伴可以直接复制到控制台使用。
function randomRange(min, max) {
    return Math.floor(Math.random() * (max - min)) + min;
}
let result = randomRange(0, 1000);
if (result % 2) {
    console.log('结果A')
} else {
    console.log('结果B')
};