Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active April 15, 2021 13:40
Show Gist options
  • Save wpweb101/bd5aa10267ab815a3c2510cd8e03853f to your computer and use it in GitHub Desktop.
Save wpweb101/bd5aa10267ab815a3c2510cd8e03853f to your computer and use it in GitHub Desktop.
JavaScript Iteration
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