INR currency format

前端 未结 19 1759
栀梦
栀梦 2020-12-09 17:31

I need to show currency format like these, how can we show.

₹1
₹10
₹100
₹1,000
₹10,000
₹1,00,000
......
19条回答
  •  北海茫月
    2020-12-09 18:14

    For display amount with two digits after decimal ...

    Try this:

    var num=1234.567;
     var ans= num.toLocaleString('en-IN',{ style: 'currency', currency: "INR",minimumFractionDigits:2,maximumFractionDigits:2 });
    
    //output
    //₹ 1,234.57
    

提交回复
热议问题