JavaScript 文字列を繰り返す
Posted by 2012年8月10日 金曜日 16:58:45
< JavaScript, コンピュータ >
質問のjQueryとは関係ないので、直接投稿は避けました。
Stringを拡張するのも自己矛盾する気がする(昔はスーパークラス自身を拡張するのを嫌っていた)のですが、、、
結構楽だったりするので。。。
String.prototype.times=function(n){
var s=this;
var result='';
while(n--){result+=s;}
return result;
};
alert( 'hello'.times(3) ); //hellohellohello
$(xxx).prepend('<div></div>'.times(3));