skip to Main Content

How to format currency input in ReactJS?

I want to format currency as 1,456,567.545 and here is my code export const formatCurrencyNumberWithDecimal = (value) => { if(value){ const cleanedValue = value.replace(/,/g, ''); // Remove existing commas const parts = cleanedValue.split('.'); const integerPart = parts[0].replace(/D/g, ''); const decimalPart…

VIEW QUESTION
Back To Top
Search