打赏

JS 运算、判断优化

1、二级制操作优于Math

如:

//函数向下取整
        console.log(Math.floor(8.9));
        //二进制向下取整
        console.log(8.9>>0);

2、慎用||

大量运用if(x === null){ x={} } 优于x=x||{}

3、switch 性能优于if...else if...

posted @ 2017-11-16 14:58  孟繁贵  阅读(534)  评论(0编辑  收藏  举报
TOP