JSFiddle - React, Tailwind, and code Playground

by Manuel Gertrudix

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>