JSFiddle - React, Tailwind, and code Playground

by BaronGrivet

HTML

<div style="word-wrap: break-word; line-height: 1em;" id="content"></div>

JavaScript

var boxes = ["╱", "╲"];
		var max = 4000;
		function writeNext()
        {
			document.getElementById('content').innerHTML +=
			boxes[Math.round(Math.random())];
        }
		var count = 0;
		function run() {
			writeNext();
			if(count++ < max) {
				setTimeout(run,1);
			}
		}
		run();