“x 是否大于 y 且小于 z”的表达式?
我正在尝试测试一个数字是否大于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是代码:
PS 这与 jQuery 无关。它很简单,赤裸 JavaScript!
Here's the code:
P.S. This has nothing to do with jQuery. It's simple, naked JavaScript!
但这是 JavaScript,而不是 jQuery。
But this is JavaScript, not jQuery.
查询:创建一个名为 Score 的变量并将其设置为 8
使用包含字符串“Mid-level Skills:”的
console.log()
并使用 & 将 Score 变量与高于 0 和低于 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 && operatorOutput :