Hello World
Click back to the top
function main() {let i = 0;let u = 1000;
while (i < 3 * u) {i++;}
console.log(‘i <3 u’, i);}
main();