“x 是否大于 y 且小于 z”的表达式?

发布于 2024-12-17 13:44:29 字数 141 浏览 1 评论 0原文

我正在尝试测试一个数字是否大于 0 但小于 8。如何在 JavaScript 中执行此操作?

这就是我正在尝试的:

if (score > 0 < 8) { alert(score); }

I'm trying to test if a number is greater than 0 but less than 8. How do I do that in JavaScript?

This is what I'm trying:

if (score > 0 < 8) { alert(score); }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑梦风尘 2024-12-24 13:44:29

这是代码:

if (score > 0 && score < 8){
    alert(score);
}

PS 这与 jQuery 无关。它很简单,赤裸 JavaScript!

Here's the code:

if (score > 0 && score < 8){
    alert(score);
}

P.S. This has nothing to do with jQuery. It's simple, naked JavaScript!

留蓝 2024-12-24 13:44:29
if ((score > 0) && (score < 8)) {
    alert(score);
}

但这是 JavaScript,而不是 jQuery。

if ((score > 0) && (score < 8)) {
    alert(score);
}

But this is JavaScript, not jQuery.

一个人的旅程 2024-12-24 13:44:29

查询:创建一个名为 Score 的变量并将其设置为 8

使用包含字符串“Mid-level Skills:”的 console.log() 并使用 & 将 Score 变量与高于 0 和低于 10 进行比较;&运算符

输出:

var score = 8;
console.log("Mid-level skills:", score > 0 && score < 10)

Query: Create a variable named score and set it to 8

Use console.log() that includes the string "Mid-level skills:" and compares the score variable to above 0 and below 10 using the && operator

Output :

var score = 8;
console.log("Mid-level skills:", score > 0 && score < 10)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文