Skip to content

Instantly share code, notes, and snippets.

@goccy
Last active December 10, 2015 02:38
Show Gist options
  • Save goccy/4368851 to your computer and use it in GitHub Desktop.
Save goccy/4368851 to your computer and use it in GitHub Desktop.
function render(n)
{
var k = 0;
for (var i = 0; i < n; i++) {
for (var j = 0; j < n; j++) {
k++;
}
}
}
for (var i = 0; i < 100; i++) {
render(2048);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment