Skip to content

Instantly share code, notes, and snippets.

@devnix
Created October 2, 2014 18:39
Show Gist options
  • Select an option

  • Save devnix/cbcc1e3dd49534a77369 to your computer and use it in GitHub Desktop.

Select an option

Save devnix/cbcc1e3dd49534a77369 to your computer and use it in GitHub Desktop.
Gotham needs a hero...
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