In JavaScript, the 'repeat()' method is a built-in method available on string objects.
자바스크립트에서 리피트 메소드는 스트링 객체에 사용가능한 빌트인 메소드이다.
It is used to create and return a new string by concatenating the original string a specified number of times.
기존의 스트링에 특정 수만큼 붙임으로써 생성하고 반환한다.
예를 들어, const str = '가나다라마바사'.repeat(2);
console.log(str)의 경우,
=> '가나다라마바사가나다라마바사'가 출력된다.
String: The original string that you want to repeat.
반복하고자 하는 기존의 스트링.(객체)
count: An integer specifying the number of times to repeat the original string.
기존 스트링을 얼마만큼 반복할 지를 명시하는 수
It must be a non-negative integer.
음수가 아닌 정수의 형태로 집어 넣어야 한다.
If the count is negative or not a number, the repeat() method returns an empty string.
공백우 두거나 음수로 설정할 경우, 엠티가 출력된다.
I referenced this contents very much from chat Gpt.