首页 > 代码库 > js format 时间金钱格式化方法

js format 时间金钱格式化方法

收录了前端开发时间金额等常用format方法

1.金额   3456  改为$3,456.00

const digitsRE = /(\d{3})(?=\d)/g

export function currency (value, currency, decimals) {
  value = http://www.mamicode.com/parseFloat(value)>< 0 ? ‘-‘ : ‘‘
  return sign + currency + head +
    _int.slice(i).replace(digitsRE, ‘$1,‘) +
    _float
}

 

js format 时间金钱格式化方法