JSFiddle - React, Tailwind, and code Playground

by notjoelshapiro

JavaScript

to auto-write an email.
    thing('abcdefghijklmnopqrstuvwxyz', 0);
    function thing(ktext, time) {
        
        var koutput = ktext.substring(0,++time);
        $('#test').text(koutput);
        if (koutput.length < ktext.length)
            setTimeout(function(){thing(ktext, time)},100);
    }