String.prototype

Repeat()

문자열을 주어진 횟수만큼 반복하여 새로운 문자열을 반환합니다.

'abc'.repeat(3); // 'abcabcabc'

Last updated