JSFiddle - React, Tailwind, and code Playground

HTML

<div id="result"></div>

JavaScript

var result_box=document.getElementById("result");
  
// start programming here
var a="hello "-"world";
  
  
// show the result
result_box.innerHTML="The result of your program is: "+a;