mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
15 lines
337 B
HTML
15 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>
|