JSFiddle - React, Tailwind, and code Playground
by austinfrance
JavaScript
function recurse() {
var o = {
x:"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
};
try {
for (var i = 0; i < 1024; i++) {
o.x += o.x;
}
} catch(e) {
}
console.log(o.x.length);
recurse(o);
}
recurse();