您好!您的问题是关于如何检查一个变量是否等于两个值之一。在这种情况下,您可以使用JavaScript中的Array.includes()
方法。
以下是一个示例代码:
const foobar = "this";
const values = ["this", "that"];
if (values.includes(foobar)) {
console.log("foobar is either 'this' or 'that'");
} else {
console.log("foobar is neither 'this' nor 'that'");
}
在这个示例中,我们创建了一个名为values
的数组,其中包含了我们想要检查的两个值。然后,我们使用Array.includes()
方法来检查foobar
是否包含在values
数组中。如果是,则输出"foobar is either 'this' or 'that'",否则输出"foobar is neither 'this' nor 'that'"。
这种方法适用于任何JavaScript支持的值,包括字符串、数字和布尔值。
领取专属 10元无门槛券
手把手带您无忧上云