📅  最后修改于: 2022-03-11 15:01:45.585000             🧑  作者: Mango
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]