MZ
Size: a a a
MK
Q
MZ
Q
async function test() {
while (true) {
// Convoluted way to print out "Hello, World!" once per second by
// pausing execution for 200ms 5 times
for (let i = 0; i < 10; ++i) {
if (i % 2 === 0) {
await new Promise(resolve => setTimeout(() => resolve(), 200));
}
}
console.log('Hello, World!');
}
}
MK
MZ
D
D
И
И
B
ПЧ
ПЧ
V
E
E
L
L4
TT