JSFiddle - React, Tailwind, and code Playground

by Sherali Turdiyev

HTML

<input class="amount" value="1,234,567.66">
<input class="amount" value="1,234,567.66">
<input class="amount" value="1,234,567.66">
<input class="amount" value="1,234,567.66">

JavaScript

window.total = 0;
$('.amount').each(function () {
    if ($(this).val()) {
        window.total += parseFloat($.trim($(this).val()).replace(/,/g, ''));
    }
});
console.log(window.total);