Skip to content

Instantly share code, notes, and snippets.

@duskvirkus
Created March 29, 2019 02:00
Show Gist options
  • Save duskvirkus/fd422f0a26c58a1ce69ec4ea9ffea84c to your computer and use it in GitHub Desktop.
Save duskvirkus/fd422f0a26c58a1ce69ec4ea9ffea84c to your computer and use it in GitHub Desktop.
10Print Generator for Default Terminal Size
let s = "";
for (let j = 0; j < 25; j++) {
for (let i = 0; i < 80; i++) {
Math.random() > 0.5 ? s += "/" : s += "\\";
}
s += "\n";
}
console.log(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment