'==' 和有什么不一样?和'===='?

发布于 2024-10-29 09:02:44 字数 245 浏览 0 评论 0原文

可能的重复:
Javascript === 与 == :哪个重要我使用“等于”运算符?

与任何类型的代码无关,只是一般而言?

Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?

Not really relative to any type of code, just in general?

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

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

发布评论

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

评论(3

狼亦尘 2024-11-05 09:02:44

通常 === 也表示类型相等。

所以:

   1 == "1" //true
   1 === "1" //false

usually === also represents equality of type.

so:

   1 == "1" //true
   1 === "1" //false
你在我安 2024-11-05 09:02:44

===相同运算符;当两个操作数的值和类型相同时,它返回 true。 ==等于运算符;它不检查类型,只检查值。

了解更多信息此处

=== is the identical operator; it returns true when both the value and the type of the two operands are the same. == is the equal operator; it does not check types, just values.

Read more here.

三生殊途 2024-11-05 09:02:44

=== 比较变量的值以及类型
== 不比较类型

=== compares the value as well as type of variable
== doesn't compare type

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