Skip to content

Instantly share code, notes, and snippets.

@ajaypayne
Created February 26, 2019 17:21
Show Gist options
  • Save ajaypayne/cc3e28c7d462bb3e56a9fca385e88479 to your computer and use it in GitHub Desktop.
Save ajaypayne/cc3e28c7d462bb3e56a9fca385e88479 to your computer and use it in GitHub Desktop.
for (var a = 0; a < 1000; a++) {
var out = '';
for (var i = 0; i < 1000; i++) {
out += "a";
}
console.log(out + "\r");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment