码迷,mamicode.com
首页 > 其他好文 > 详细

Math.log()对数的妙用

时间:2019-04-23 20:58:33      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:ext   14.   web   fan   return   margin   2.0   lin   nan   

 

###对数log 的妙用。。。

 formatBytes(bytes) {

        if (bytes === ‘0‘ || isNaN(bytes)) return ‘‘;

        var s = [‘Bytes‘, ‘KB‘, ‘MB‘, ‘GB‘, ‘TB‘, ‘PB‘];

        var e = Math.floor(Math.log(bytes) / Math.log(1024));

        return (bytes / Math.pow(1024, Math.floor(e))).toFixed(1) + " " + s[e];

    },

Math.log()对数的妙用

标签:ext   14.   web   fan   return   margin   2.0   lin   nan   

原文地址:https://www.cnblogs.com/softwarelanguagebs/p/10758723.html

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