[프런트엔드] 반복 문자열 함수

1045 단어
문자열 반복 함수
if(!String.str_out_times) {
    String.prototype.str_out_times = function(l) {
        return new Array(l+1).join(this);
    }
}

호출:
alert('hello'.str_out_times(2));

출력:
hellohello
전재 정리, 관심 감사합니다~

좋은 웹페이지 즐겨찾기