Last active
April 15, 2021 13:40
-
-
Save wpweb101/bd5aa10267ab815a3c2510cd8e03853f to your computer and use it in GitHub Desktop.
JavaScript Iteration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var j, k; | |
// Good example | |
for ( i = 0, k = getValues(); i < k; i++ ) { | |
// Your logic | |
} | |
// Bad example | |
for ( i = 0; i < getValues(); i++ ) { | |
// Your logic | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment