美文网首页
千分位数字:每隔三位插入一个逗号

千分位数字:每隔三位插入一个逗号

作者: 倩仔6 | 来源:发表于2020-06-28 10:25 被阅读0次

    function toThousands(num) {
    var num = (num || 0).toString(), result = '';
    while (num.length > 3) {
    result = ',' + num.slice(-3) + result;
    num = num.slice(0, num.length - 3);
    }
    if (num) { result = num + result; }
    return result;
    }
    alert(toThousands(123456789))

    function toThousands(num) {
        var num = (num || 0).toString(), result = '';
        while (num.length > 3) {
            result = ',' + num.slice(-3) + result;
            num = num.slice(0, num.length - 3);
        }
        if (num) { result = num + result; }
        return result;
    }
    alert(toThousands(123456789))
    

    相关文章

      网友评论

          本文标题:千分位数字:每隔三位插入一个逗号

          本文链接:https://www.haomeiwen.com/subject/dneifktx.html