前端用js写一个函数实现KBMBGBTB单位转换

Posted caoxueying2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端用js写一个函数实现KBMBGBTB单位转换相关的知识,希望对你有一定的参考价值。

  • 需求:用js写一个函数实现KB、MB、GB、TB单位转换
  • 实现思路:
    • 当函数参数值小于等于1000时,参数除以1000,即可得到最小单位kb,赋值给变量_integer;当_integer值大于1000时,kb值除以1000,即可得到mb,赋值给变量_integer;以此类推。
    • 将单位保存在数组中, 将转换后的值与单位进行拼接即可得到转换后的单位。
  • 代码展示:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>转换数字单位KB、MB、GB、TB</title>
</head>
<body>
<script type="text/javascript">
    const formatFileSize = size => 
      const scale = 1000
      const digitList = [KB, MB, GB, TB]
      let _integer = size/scale //最小单位kb
      let digit = 0
      while(_integer > scale) 
        _integer = Math.round(_integer/scale)
        digit++
      
      return `$_integer$digitList[digit]`
    
    document.write(formatFileSize(2003));
</script>
</body>
</html>

 

以上是关于前端用js写一个函数实现KBMBGBTB单位转换的主要内容,如果未能解决你的问题,请参考以下文章

前端百题斩006——js中三类字符串转数字的方式

高阶函数式编程二:在 Kotlin 中实现单位半群(Monoid)

2022年最新前端面试题,持续更新

高阶函数式编程三:在 Kotlin 中“实现”应用函子(Applicative)

前端可以用java写力扣吗

javaScript基本功001