You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
It's not a huge deal anyway, but the for IN is ok(var), regular for loop too :
for (var variable in object) {
if (object.hasOwnProperty(variable)) {
}
} && for (var i = 0; i < array.length; i++) {
array[i]
}
Might also be time to use the LET keyword !
I always, for no good reason mind you... , wake up and figure out the variable's missing after a few seconds of debugging.and YES, I've created my own snippet by now, but still, this should be an easy fix.
Simple, latest version 1.30
for loop,
the for of autocompletes (without any added snippets) this:
for (variable of iterable) {
}
always f...s me up later.
should be
for (LET variable of iterable) {
}
The text was updated successfully, but these errors were encountered: