Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created December 8, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/bfa8e8aac0f25aec09cb37fdeb3ad3a7 to your computer and use it in GitHub Desktop.
Save goofmint/bfa8e8aac0f25aec09cb37fdeb3ad3a7 to your computer and use it in GitHub Desktop.
total = 0;
for (var x = 0; x < i; x++) {
total += x;
for (var y = 0; y < i; y++) {
total += y;
}
}
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment