gpt4 book ai didi

javascript - 检查序列中是否存在某个值

转载 作者:行者123 更新时间:2023-11-28 20:24:47 25 4
gpt4 key购买 nike

我想检查集合3,8,13,15,18,23,28, ..., etc.中是否包含一个值;基本上该集合由 3 + 5n 定义。 .

如何通过简单的条件实现这一目标?

代码:

if(/* condition here */) {
// value is part of set
} else {
// value is not part of set
}

最佳答案

如果你必须检查你的变量是否在 (3 + 5n) 的值中,你应该使用这个:

var val = 8; //for example
if ((val % 5) == 3) {
//do the code
}
else {
//do other code
}

关于javascript - 检查序列中是否存在某个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17591514/

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