JSFiddle - React, Tailwind, and code Playground

HTML

<body onload="abc()">

JavaScript

function abc(){
    var i=1;
    setInterval(function(){document.write(i+"<br>");i++},1000);
}