JSFiddle - React, Tailwind, and code Playground

by Ekul

HTML

<html>
      <head>
            <title>2+2
            </title>            
      </head>
      <body>
      2+2=      
      <script type="text/javascript">
      a=2;
      b=2;
      c=a+b;      
      alert(c)
      </script>
      </body>
</html>