js bool true false 比较

.想到一个好玩的,运行如下 javascript :
  if (‘0‘) alert("‘0‘ is true");
  if (‘0‘ == false) alert("‘0‘ is false");结果是,两次都 alert 了!那么 ‘0‘ 到底是 true 还是 false 呢?

答案是:在js做比较的时候,有这样的三条规则:

如果比较的两者中有bool,会把 bool 先转换为对应的 number,即 0 和 1
如果比较的双方中有一方为number一方为string,会把string转换为数字
把string直接转换为bool的时候,空字符串‘’转换为 false,除此外的一切字符串转换为 true

在第一次比较的时候,直接把 ‘0‘ 放在 if 的表达式中,相当于直接把 string 转换为 bool, !!‘0‘ === true,所以是成立的
在第二次比较的时候,会先把 false 转换为 0,然后把 ‘0‘ 转换为 0, 左右两边都是0,于是也是成立的。
所以归根到底这是一个javascript中做比较的时候类型转换顺序的问题,个人觉得还是不是很合理的,不同的转换顺序得到的结果会不一样

在比较的时候,要用
 //是否发布自助系统
        var rdoPromotion=document.getElementsByName("RadPromotion");
        if(arrayCategory[9])
        {
            rdoPromotion[0].checked=true;
            rdoPromotion[1].checked=false;
        }
        if(arrayCategory[9]=="False")
        {
            rdoPromotion[0].checked=false;
            rdoPromotion[1].checked=true;
           
        }

时间: 2024-10-31 01:36:22

js bool true false 比较的相关文章

js开关true||false

想禁止掉页面的其它click事件,用true||false就可以避免去取消事件的绑定 <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <script type="text/javascript

c++ 中 BOOL与bool TRUE与true FALSE与false 区别 (转载)

http://blog.chinaunix.net/uid-28458801-id-3941112.html FALSE/TRUE与false/true的区别 1.FALSE/TRUE与false/true的区别: false/true是标准C++语言里新增的关键字,而FALSE/TRUE是通过#define,这要用途 是解决程序在C与C++中环境的差异,以下是FALSE/TRUE在windef.h的定义: #ifndef FALSE #define FALSE 0 #endif #ifndef

bool TRUE OR FALSE

inline bool GetBool(uint32_t value) { return value ?  true:false; //return value ? 1:0; //return !!value; } 原文地址:https://www.cnblogs.com/sciapex/p/12143367.html

django2.2 DEBUG=True/False时如何设置静态文件(image js css等)

目录结构: project ----templates ----app ----manage.py 添加静态资源,目录结构更新为: project ----templates ----app ----static # 静态资源 --------img --------js --------css ----manage.py 以img举例,引用资源的代码为: {% load static %} <img src='{% static "img/favicon.png" %}'/&g

js判断true or false

result["pageFrom"]= (formType=='payment'? true : false); {{#if pageFrom}} <p>1 </p> {{else}} <p>2 </p> {{/if}}

15 16 17 神器的print函数 py赋值 布尔(true false)

第一课 神奇的print函数 # coding:utf-8 # 神奇的print函数 支持可变参数 print("hello world") #结果为 hello world print("a","b","c","d","e") #结果为 a b c d e #name = Bill print("name =","Bill") #结果为 name

perl true/false

perl treat 0 false, non 0 ture. print "false\n" if 0; print "false\n" if 0; ------------------------ ture perl treat string empty is false. my $temp = ""; print "This is $temp\n" if $temp; $temp = "HelloWorld&q

Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token &#39;name&#39;: was expecting (&#39;true&#39;, &#39;false&#39; or &#39;null&#39;)

Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'name': was expecting ('true', 'false' or 'null') Ajax跨域问题 ajax提交添加下面两行代码 contentType:'application/json;charset=utf-8' data:JSON.stringify(数据) var allData = { name:"张三"

Javascript 内置值、typeof运算符、true/false判断

一.内置值 true false null undefined NaN Infinity 二.typeof运算结果 number string boolean undefined function object  (array.) 三.true/false true: 字符串.true.对象 false: