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;
 

}