gpt4 book ai didi

javascript - 检查许多不同案例的简单方法

转载 作者:行者123 更新时间:2023-11-29 14:49:32 25 4
gpt4 key购买 nike

所以我一直想知道是否有可能在不使用 switch() 的情况下更容易地使用 math.random 执行 if 语句:

var ex = Math.random()

if (ex > 0.1) {
return 'so long';
} else if (ex > 0.2) {
return 'so long'; // i understand that this is dead code because it does the same thing, its just for example
}

等等

它很快就会重复,我认为必须有一种更简单的方法来做到这一点

最佳答案

如果你想从一组字符串中随机选择一个条目,你可以这样做:

var options = ["So long", "Thanks for all the fish", "42", "Where is my towel?"];
var index = Math.floor(Math.random() * options.length);
return options[index];

P.S.:福特不是在某个时候建议可以用一个不断要茶的机器人代替亚瑟吗?不幸的是,我找不到原始报价...

关于javascript - 检查许多不同案例的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27888274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com