JS中==和===的区别
可能的重复:
JavaScript 中 == 和 === 的区别
Javascript === 与 == :哪个重要我使用“等于”运算符?
==
和 ===
之间有什么区别?也在 !==
和 !==
之间吗?
Possible Duplicates:
Difference between == and === in JavaScript
Javascript === vs == : Does it matter which “equal” operator I use?
What's the difference between ==
and ===
? Also between !==
and !==
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Stackoverflow 上已经有很多这个问题的答案。
简而言之:
==
仅比较值===
比较值 + 类型There are lots of answers to this question on Stackoverflow already.
Short:
==
only compares values===
compares values + type“==”表示等于,而“==”表示完全相等。
简而言之,“==”在进行比较时会尝试强制/转换值的类型,因此“2”==2,而“===”则不会。
"==" means equals, whereas "===" means identically equal.
In short, "==" will try and coerce/convert the types of values when doing a comparison, so "2"==2, whereas "===" will not.