I need to show currency format like these, how can we show.
₹1 ₹10 ₹100 ₹1,000 ₹10,000 ₹1,00,000 ......
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