JSFiddle - React, Tailwind, and code Playground

by coper

HTML

<html>
    <title>
        Adding 2+2 on javascript
     </title>
    <body>
         <script type="text/javascript">
            var num1= 2;
            var num2= 2;
            alert("2 plus 2 equals " +(num1+num2));
        </script>
    </body>
</html>