JSFiddle - React, Tailwind, and code Playground

by rajaadil

HTML

<span class="cw-value-one"> </span>

JavaScript

$('span.cw-value-one').each(function() {
    alert("Length without trim = " + $(this).text().length);
    alert("Length without trim = " + $(this).text().trim().length);

});