Created
July 26, 2022 06:18
-
-
Save caglarorhan/dfb7b4a2a3df2d86cd3a98c156f99fd4 to your computer and use it in GitHub Desktop.
XmassTree Drawing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(let i=1, x=0; i<40;i=i+2, x++){ | |
let empty = " ".repeat(40-(x)); | |
let rand = ()=>Math.floor(Math.random()*i); | |
let star = "*".repeat(i).split(''); | |
star[rand()]="β"; | |
// star[rand()]="π"; | |
// star[rand()]="π"; | |
console.log(empty,star.join('')); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment