js中的~~是一种利用符号进行的类型转换,转换成数字类型
如:
~~true === 1
~~false === 0
~~"" === 0
~~[] === 0
~~undefined === 0
~~!undefined === 1
~~null === 0
~~!null === 1
js中的~~是一种利用符号进行的类型转换,转换成数字类型
如:
~~true === 1
~~false === 0
~~"" === 0
~~[] === 0
~~undefined === 0
~~!undefined === 1
~~null === 0
~~!null === 1
本文标题:js中的~~运算符号
本文链接:https://www.haomeiwen.com/subject/yuvqmftx.html
网友评论