문자열을 주어진 횟수만큼 반복해 붙인 새로운 문자열 반환한다. 매개변수로는 count가 있다. count는 문자열을 반복할 횟수로 0과 양의 무한대 사이의 정수 사용 가능하다.
string.repeat(count)
console.log('hello'.repeat(3)); // 'hellohellohello'
참고 string.repeat()