美文网首页
JS 里的数据类型转换

JS 里的数据类型转换

作者: weirdy丶 | 来源:发表于2019-04-24 18:40 被阅读0次

    转String:

    number转string:

    boolean转string:

    null转string:会报错

    undefined转string:同样报错

    object转string:可以,但是结果不是我们想要的

    其他转string的方法:

            上面的代码中,这个“+”,如果发现左边或右边任意一边有字符串,就会尝试把另外的一边也变为字符串。

    还可以使用String全局方法:


    转Boolean:

    number转boolean:

    string转boolean:

    null、undefined转boolean:

    object转boolean:

    转boolean其他方法:

    所有值中只有六个值转为boolean是false:0、NaN、‘’(空字符串)、null、undefined、false。


    转number:

    ‘1’ → 1:

    相关文章

      网友评论

          本文标题:JS 里的数据类型转换

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