JSFiddle - React, Tailwind, and code Playground
by brineryte
HTML
<p id="theDjent"></p>
JavaScript
const theDjent = doTheDjent(150, 3, 4);
//thall
function doTheDjent(bpm, length, time) {
let theDjent = "";
for (i = 1; i <= bpm * length * time; ++i) {
theDjent += Math.random() > 0.5 ? "0" :
".";
theDjent += i % time == 0 ? "|" : "";
}
return theDjent;
}
document.getElementById("theDjent").append(theDjent);