5 lines
111 B
JavaScript
5 lines
111 B
JavaScript
for (let i = 0, x = 2; i < 5; i++);
|
|
|
|
assert.ok(typeof i === "undefined");
|
|
assert.ok(typeof x === "undefined");
|