|
|
|
|
|
by TeMPOraL
3450 days ago
|
|
Personally I have a habit of avoiding that, especially in dynamic languages, because a single typo could have nasty consequences there. So I always figure out a synonym, or use a name for the variable that's either more descriptive: for (let particularThing of things)
or at least visibly different: for (let th of thigns)
|
|