JSFiddle - React, Tailwind, and code Playground
by nosfan1019
HTML
<p class="test"></p>
JavaScript
$(document).ready(function(){
var string = 3*40;
$('.test').html(string);
});
by nosfan1019
<p class="test"></p>
$(document).ready(function(){
var string = 3*40;
$('.test').html(string);
});