JSFiddle - React, Tailwind, and code Playground

by Santosh Thakur

HTML

<p style="line-height: 10px; font-size: 10px;">
Click "<i>Load samples</i>" to view and edit more JS samples.<br>
</p>

JavaScript

for (var line=1; line<10; line++) {
  for(var i=1;i<29;i++) {
    var s = (Math.floor((Math.random()*2)%2)) ? "╱" : "╲";
    document.write(s);
  }
  document.writeln("<br>");
}