JSFiddle - React, Tailwind, and code Playground

by wisegorilla

HTML

<!DOCTYPE html>
<html>
<body>

<h2>My First Web Page</h2>
<p>My first paragraph.</p>

<p>Never call document.write after the document has finished loading.
It will overwrite the whole document.</p>



</body>
</html>

JavaScript

// Try edit message

var x = 1;
document.write(x);