Skip to content

Instantly share code, notes, and snippets.

@asaschachar
Created July 20, 2018 01:31
Show Gist options
  • Save asaschachar/7e8964a61b0958011bdf1dedba291264 to your computer and use it in GitHub Desktop.
Save asaschachar/7e8964a61b0958011bdf1dedba291264 to your computer and use it in GitHub Desktop.
Project JavaScript
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