JSFiddle - React, Tailwind, and code Playground
HTML
<div class="count"></div>
CSS
.count {
color: #0000ff;
}
JavaScript
$( function () {
var
count = 231,
block = $( '.count' ),
interval = setInterval( function () {
count++;
block.text( count );
if( count === 231 ) {
clearInterval( interval );
}
}, 5000 );
block.text( count );
} );