Is there a way i can fix that?
# announcements
d
Is there a way i can fix that?
l
Use the variable
🌌 1
🧠 2
d
But i use it in the for loop
l
Not in its body, so it's optimized away. You can use it in the loop body or after the loop, or just reference it by putting
notDeleted
alone on a line.
d
No i can't use it in the loop and not in the line where i create the loop
l
You can
Copy code
for (i in whatever) {
   // Some code
}
whatever
The last line is what you want to do.
d
ok
l
Did it work?
d
i haven't tested it yet