📜  将数字格式化为 2 位 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:45.585000             🧑  作者: Mango

代码示例4
var numarr = [8, 32, 128]
var formatted = []
//create three numbers of different lengths
numarr.forEach(num => {
  formatted.push(
    num.toLocaleString('en-US', {//this is the function that formats the numbers
      minimumIntegerDigits: 2, //change this to your minimum length
      useGrouping: false
    })
  )
})
//after running this, formatted == [08, 32, 128]