JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<body>
<p id="suma">Muestra el resultado aquĂ</p>
<script>
var x = 5;
var y = 6;
document.getElementById("suma").innerHTML = x + y;
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<p id="suma">Muestra el resultado aquĂ</p>
<script>
var x = 5;
var y = 6;
document.getElementById("suma").innerHTML = x + y;
</script>
</body>
</html>