I want to remove commas from the string and calculate those amount using JavaScript.
For example, I have those two values:
This is the simplest way to do it.
let total = parseInt(('100,000.00'.replace(',',''))) + parseInt(('500,000.00'.replace(',','')))