JavaScript 运算符“在 x 内”
是否有一个 JavaScript 运算符可以检查邻近度,有点像软等于?例如,它会读取 if (a is inside 5 of b)
,而不是 if (a == b)
。可能没有这样的东西,但如果有的话会有很大的帮助。 谢谢
is there a JavaScript operator that will check proximity, kind of like a soft equals? For example, instead of if (a == b)
it would read if (a is within 5 of b)
. There is probably no such thing but it would be a big help if there was.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有内置的方法可以做到这一点,但您可以使用以下方法轻松完成相同的任务:
There's no built-in way to do this, but you can easily accomplish the same with this:
不,没有这样的运算符。
仅供参考,所有运算符都可以在 https://developer.mozilla.org/en/JavaScript 找到/参考/运算符
nope, there's no such operator.
FYI, all operators can be found at https://developer.mozilla.org/en/JavaScript/Reference/Operators