Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
// Vals have a limit of 256kb across the sum of their parts (logs, code, email, output, error)
export const hugeValTotal = (() => {
const big = new Array(50000).fill(1);
console.log(big);
console.email(big);
return big;
})();
October 23, 2023