小小笔记,不足之处请指出,谢谢_
1.类型
typeof null 结果为'object';
typeof undefined 结果为'undefined';
typeof '' 结果为'string';
typeof 0 结果为'number';
2.关系
null==undefined 结果为true
0=='' 结果为true
null==0 结果为false
null=='' 结果为false
undefined==0 结果为false
undefined=='' 结果为false
3.==与===
null===undefined 结果为false
0==='' 结果为false
由此可以看到===不同于==的是,==是值的比较,===除了值的比较以外还有类型的比较
网友评论