|
|
|
|
|
by santraginean
2098 days ago
|
|
JS works that way with plain for loops, but not for-in or for-of. The following fails on the last line, for example: for (const i in [1,2,3,4]) {
alert(i);
}
alert("i is now " + i); // ReferenceError
(Not that JS is exactly known for consistent and predictable behavior on edge cases, of course...)Python I don’t have experience with, and it appears I stand corrected on that front! I wonder how intentional it is, and what sort of use case it enables (and if it’s considered good practice to use). |
|