Skip to content

Instantly share code, notes, and snippets.

View devnix's full-sized avatar
🐢

Pablo Largo Mohedano devnix

🐢
View GitHub Profile
@devnix
devnix / batman.js
Created October 2, 2014 18:39
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++;
}