Skip to content

Instantly share code, notes, and snippets.

@mbejda
Created January 25, 2014 23:32
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 mbejda/8625510 to your computer and use it in GitHub Desktop.
Save mbejda/8625510 to your computer and use it in GitHub Desktop.
for(var y = 0; y < 20; y++)
{
console.log("Y "+y);
var temp = 0;
for(var x = 0; x < y; x++)
{
console.log("X "+x);
temp = temp + x;
}
console.log("Results "+temp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment