I need to show currency format like these, how can we show.
₹1 ₹10 ₹100 ₹1,000 ₹10,000 ₹1,00,000 ......
I know it's a bit late, but you can just use https://osrec.github.io/currencyFormatter.js/ which handles
Then all you need is:
// Outputs ₹ 25,34,234.00 OSREC.CurrencyFormatter.format(2534234, { currency: 'INR' });