Convert to currency format

后端 未结 6 1175
迷失自我
迷失自我 2020-12-06 03:43

Is there a built in function of JavaScript to convert a string into a currency format?

For example

var a = \'1234\';
a.convertToCurrency();   // retu         


        
6条回答
  •  南方客
    南方客 (楼主)
    2020-12-06 03:55

    Here's another approach which accounts for cents:

    
    
    
    Money Conversion
    
    
    
    
    
    
    
    
    
    
    
    

    It does the trick, though it doesn't round the cent amounts or strip off extras past 2 digits.

提交回复
热议问题