JSFiddle - React, Tailwind, and code Playground
by twinturbotom
HTML
<p class='output'></p>
JavaScript
output = calc(5,4);
$('.output').html(output);
function calc( h, w ) {
return h * w;
}
by twinturbotom
<p class='output'></p>
output = calc(5,4);
$('.output').html(output);
function calc( h, w ) {
return h * w;
}