Created
October 2, 2014 18:39
-
-
Save devnix/cbcc1e3dd49534a77369 to your computer and use it in GitHub Desktop.
Gotham needs a hero...
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
| var string = "abc"; | |
| var number = string++; | |
| number = number.toString(); | |
| var output = ''; | |
| var i = 0; | |
| while (i <= 16) { | |
| output = output + number; | |
| i++; | |
| } | |
| console.log(output + " Batman!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment