mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 21:48:28 +00:00
16 lines
337 B
HTML
16 lines
337 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
window.big = (function makeBig(depth = 0) {
|
|
var big = Array(5);
|
|
big.fill(undefined);
|
|
if (depth < 5) {
|
|
big = big.map(_ => makeBig(depth + 1));
|
|
}
|
|
return big;
|
|
}());
|
|
</script>
|
|
</body>
|
|
</html>
|