We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6875f4 commit bcb1526Copy full SHA for bcb1526
README.md
@@ -980,7 +980,7 @@ they are fixed if they can be.
980
```javascript
981
// On old browsers, each iteration with uncached `list.length` would be costly
982
// because of `list.length` recomputation. In modern browsers, this is optimized.
983
-for (let i = 0, len = list.length; i < len; i++) {
+for (let i = 0; len = list.length; i < len; i++) {
984
// ...
985
}
986
```
0 commit comments