码迷,mamicode.com
首页 > Web开发 > 详细

js中~~和 |

时间:2019-12-06 19:07:19      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:运算   define   取整   col   向上取整   floor   als   console   取值   

~~它代表双非按位取反运算符,

如果你想使用比Math.floor()更快的方法,那就是它了。

需要注意,对于正数,它向下取整;对于负数,向上取整;非数字取值为0,它具体的表现形式为:

~~null;      // => 0
~~undefined; // => 0
~~Infinity;  // => 0
--NaN;       // => 0
~~0;         // => 0
~~{};        // => 0
~~[];        // => 0
~~(1/0);     // => 0
~~false;     // => 0
~~true;      // => 1
~~1.9;       // => 1
~~-1.9;      // => -1

| 的用法,通常用来取整

1.2|0  // 1
1.8|0 // 1
-1.2|0 // -1
console.log(1553 / 10   | 0)  // Result: 155
console.log(1553 / 100  | 0)  // Result: 15
console.log(1553 / 1000 | 0)  // Result: 1

 

js中~~和 |

标签:运算   define   取整   col   向上取整   floor   als   console   取值   

原文地址:https://www.cnblogs.com/ll15888/p/11996989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!