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

js实现位运算

时间:2020-05-27 12:01:22      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:push   实现   java   asc   xxx   highlight   console   amp   pre   

    const arr = [2,4,16];
    let v = 0;
    for(const i in arr) v |= arr[i];
    console.log(v);

  

    let xxx = 23;// 16 4 2
    let r = [];
    let i = 0;
    while (xxx > 0) {
        const x = xxx & Math.pow(2, i);
        if (x) {
            xxx -= x;
            r.push(x);
        }
        i++;
    }

  

js实现位运算

标签:push   实现   java   asc   xxx   highlight   console   amp   pre   

原文地址:https://www.cnblogs.com/cxyzj/p/12971639.html

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