美文网首页
js中的~~运算符号

js中的~~运算符号

作者: bug喵 | 来源:发表于2018-07-20 17:56 被阅读0次

    js中的~~是一种利用符号进行的类型转换,转换成数字类型
    如:

    ~~true === 1
    ~~false === 0
    ~~"" === 0
    ~~[] === 0
    
    ~~undefined === 0
    ~~!undefined === 1
    ~~null === 0
    ~~!null === 1
    

    相关文章

      网友评论

          本文标题:js中的~~运算符号

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