Skip to content

Instantly share code, notes, and snippets.

@asaschachar
Last active September 3, 2022 13:21
Show Gist options
  • Save asaschachar/2c7ea971df9193ee447422fb2cfb8fa4 to your computer and use it in GitHub Desktop.
Save asaschachar/2c7ea971df9193ee447422fb2cfb8fa4 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:
break;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment