JSFiddle - React, Tailwind, and code Playground

by borayeris

HTML

<div>50</div>
<div>250</div>
<div>501</div>
<div>150</div>
<div>5450</div>
<div>50</div>
<div>30</div>
<span id="write">mmm</span>

JavaScript

$(function(){
var test=0;
    $('div').each(function(){
        test = test + Number($(this).text());alert(test);
    });
    var testString = test;
    $('#write').html(testString);
});