• Are you sure about that? Is it all because of this "recursive function"s memory consumption?

    sleep function is just a renamed setTimeout function:

    var sleep;
    sleep = function(ms, f){
      return setTimeout(f, ms);
    };
    
About

Avatar for ceremcem @ceremcem started