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

特殊符号 && 和 ||

时间:2016-11-08 19:47:36      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:new   nbsp   span   amp   efi   优先级   undefined   alert   代码分析   

一、值为false的情况

如果逻辑对象值为0,-0, null,undefined,false,"",NaN。那么值为false.

二、&& || 的 理解

1.&& 当逻辑与&&时,找到为false的分项就停止处理, 并返回该分项的值

2.|| 当逻辑或||时,找到为true的分项就停止处理,并返回该分项的值

1              var a = "" || null || undefined || 0 || -0 || false || NaN  || 3 || 4;//3
2              alert(a);
3              var b = 4  && new Object()  && "undefined" && "a" && null  && "0";//null
4              alert(b);

三、&& || 的优先级

&& 优先级高于 ||

1 alert( 0 || 1 && 2 || -0 );//2

四、常用代码分析:

function test(options){
    var a = options || {}; //{} 转换boolean值的话是true
    //如果options为true 返回options   true || true 返回前面那个true
    // 如果options为false 返回后面{}  
}

 

特殊符号 && 和 ||

标签:new   nbsp   span   amp   efi   优先级   undefined   alert   代码分析   

原文地址:http://www.cnblogs.com/cygnet/p/6044013.html

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