https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往

关于 js取反的 坑

代码是这样的

    var a = new  Date;
    var temp =Date.parse(a);
    document.write(temp+"<br/>"+ ~temp);

 

经过尝试 看到了这个,居然取反等于正数了

console.log(2147483649,~2147483649);

console.log(2147483648,~2147483648);

console.log(2147483647,~2147483647);

结果:

 

2147483650 取反2147483645
2147483649 取反2147483646
2147483648 取反2147483647  
2147483647 取反-2147483648
2147483646 取反 -2147483647

posted @ 2018-11-09 12:08  鱼酱  阅读(1142)  评论(0编辑  收藏  举报

https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往