Last active
September 3, 2022 13:21
-
-
Save asaschachar/2c7ea971df9193ee447422fb2cfb8fa4 to your computer and use it in GitHub Desktop.
Project JavaScript
This file contains hidden or 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
if (isComplex) { | |
for (var i=6, j='crazy'; i<isComplex.length; i+=3) { | |
while(j.length < 20) { | |
j = j.concat('hello'); | |
switch (i % 2) { | |
case 0: | |
j = j.concat('U'); | |
break; | |
case 1: | |
break; | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment