JSFiddle - React, Tailwind, and code Playground
by AlexMcP
HTML
<span></span>
CSS
span {
font-family:monospace;
}
JavaScript
var speed = 100
function start() {
setTimeout(function() {
$('span').html('pd');
setTimeout(function() {
$('span').html('bq');
setTimeout(function() {
$('span').html('dp');
setTimeout(function() {
$('span').html('qb');
start()
}, speed)
}, speed)
}, speed)
}, speed)
}
start()