美文网首页
4.JavaScript-数据类型转换为布尔类型

4.JavaScript-数据类型转换为布尔类型

作者: 乄Denve彡 | 来源:发表于2019-04-02 15:43 被阅读0次

    1.将String类型转换为布尔类型

    只要字符串中有内容(空格也算内容)都会转换为true,只有字符串中没有内容才会转换为false

    // 有内容(空格也算内容)就会转换为true
    let str = " ";
    let bool = Boolean(str);
    console.log(bool);  // true
    console.log(typeof bool);  // boolean
    
    // 没内容就会转换为false
    let str = "";
    let bool = Boolean(str);
    console.log(bool);  // false
    console.log(typeof bool);  // boolean
    

    2.将Number类型转换为布尔类型

    只有数值为0和NaN时才会转为false,其他的都会转为true

    // 只有数值为0和NaN时才会转为false
    let num = 0;
    let num1 = NaN;
    let bool = Boolean(num);
    let bool1 = Boolean(num1);
    console.log(bool);  // false
    console.log(bool1);  // false
    console.log(typeof bool);    // boolean
    console.log(typeof bool1);    // boolean
    

    3.将undefined类型转换为布尔类型

    undefined会转换为false

    let num = undefined;
    let bool = Boolean(num);
    console.log(bool);  // false
    console.log(typeof bool);    // boolean
    

    4.将null类型转换为布尔类型

    null会转换为false

    let num = null;
    let bool = Boolean(num);
    console.log(bool);  // false
    console.log(typeof bool);    // boolean
    

    \color{red}{总结:}

    \color{red}{在JavaScript中如果想将基本数据类型转换为布尔类型, 那么只需调用Boolean(常量or变量)函数即可}
    \color{red}{只有(空字符串/0/NaN/undefined/null) 会转换为false,其他的都会转换为true}

    相关文章

      网友评论

          本文标题:4.JavaScript-数据类型转换为布尔类型

          本文链接:https://www.haomeiwen.com/subject/hmegbqtx.html