JSFiddle - React, Tailwind, and code Playground

by heera

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>

JavaScript

var interval;
function animate(i) {
    if (i > 1) {
        i--;
        console.log(i);
        interval = setTimeout(function(){ animate(i) }, 500);
    }
}
animate(10);