Skip to content

Instantly share code, notes, and snippets.

@yoko
Created July 28, 2010 03:54
Show Gist options
  • Save yoko/493323 to your computer and use it in GitHub Desktop.
Save yoko/493323 to your computer and use it in GitHub Desktop.
String.prototype.i = function(n) {
var letter = this.charAt(this.length - 1);
var ret = [this];
while (--n) ret.push(letter);
return ret.join('');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment