JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head>
     <script type="text/javascript">
        alert("first");
    </script>
</head>
<body>
    <div class="box"></div>
    <script type="text/javascript">
        document.write('<scr' + 'ipt>alert("second");</scr' + 'ipt>');
    </script>
    <script type="text/javascript">
        alert("third");
    </script>
</body>
</html>