全等(===)

第一次发现全等(===)这个比较运算符:

 

===     全等(值和类型)

    
<script type="text/javascript">
var x = 5;
document.writeln(x 
== 5);    // true
document.writeln(x == '5');    // true
document.writeln(x === 5);    // true
document.writeln(x === '5');    // false
document.writeln(x != '5'); // false
document.writeln(x !== '5');    // true
</script>
posted @ 2009-04-20 19:27  jeky  阅读(438)  评论(1编辑  收藏  举报
友情链接:逗死了笑话网 | 网络记事本