This page was translated from English by the community.Learn more and join the MDN Web Docs community.
RangeError: repeat count must be non-negative
메시지
RangeError: repeat count must be non-negative (Firefox) RangeError: Invalid count value (Chrome)
In this article
에러 형식
RangeError무엇이 잘못되었을까?
String.prototype.repeat() 메소드가 사용되었습니다. 이 메소드는 문자열이 반복되는 수를 예측하는 카운트 파라메터를 가지고 있었습니다. 이 파라메터는 0보다 크고, 양의Infinity 보다는 작으며, 음수는 될수 없습니다. 이 범위는 이렇게 표현 될 수 있습니다. : [0, +∞)
예
>허용되지 않는 경우
js
"abc".repeat(-1); // RangeError허용되는 경우
js
"abc".repeat(0); // ''"abc".repeat(1); // 'abc'"abc".repeat(2); // 'abcabc'"abc".repeat(3.5); // 'abcabcabc' (수는 정수로 변환될 것입니다.)