JSFiddle - React, Tailwind, and code Playground

by igos

HTML

<p class="number_vp">56</p>

<p class="number_vp">2</p>

JavaScript

$(".number_vp").each(function(index,elm) {
    $(this).html(Math.round(Math.random()*100000));
});