Created
July 20, 2018 01:31
-
-
Save asaschachar/7e8964a61b0958011bdf1dedba291264 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: | |
j = j.concat('U'); | |
break; | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment