mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 01:31:17 +00:00
18 lines
322 B
HTML
18 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
"use strict";
|
|
|
|
window.big = (function makeBig(depth = 0) {
|
|
let big = Array(5);
|
|
big.fill(undefined);
|
|
if (depth < 5) {
|
|
big = big.map(_ => makeBig(depth + 1));
|
|
}
|
|
return big;
|
|
}());
|
|
</script>
|
|
</body>
|
|
</html>
|