149 B
149 B
importance: 4
An occasional infinite loop
This loop is infinite. It never ends. Why?
let i = 0;
while (i != 10) {
i += 0.2;
}
importance: 4
This loop is infinite. It never ends. Why?
let i = 0;
while (i != 10) {
i += 0.2;
}