码迷,mamicode.com
首页 > 其他好文 > 详细

==和===的区别

时间:2014-11-25 10:30:46      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   bs   ef   nbsp   type   string   oo   情况   

首先我们先说一下就是==和===的含义

在条件判断中

==  等于  

egg:

var i=1;

var j="1";

这里i==j成立.

var a;

var b=null;

则a==b成立.

var x=true;

var y=1;

则x==y成立.

 

=== 全等 先进行判断类型是否相同 如果类型不同则===不成立.

上面那些在这里则不成立.

 

类型的比较

typeof(undefined)=‘undefined‘

typeof(null)=‘object‘

typeof("")=‘string‘

typeof(0)=‘number‘

typeof(false)=‘boolean‘

 

当然!=和!==也是类似的情况.

 

==和===的区别

标签:ar   sp   bs   ef   nbsp   type   string   oo   情况   

原文地址:http://www.cnblogs.com/sdya/p/4120267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!