JSFiddle - React, Tailwind, and code Playground

by gurkavcu

JavaScript

function  test () {
    
    var xxx = new Array(10000).join("XXXX");
    console.log("zz");
    setTimeout("test",10); 
  
   xxx = null;  
}

test();