Errors: Negative repetition count
Errors: Negative repetition count
信息
RangeError: repeat count must be non-negative (Firefox)
RangeError: Invalid count value (Chrome)
错误类型
RangeError
哪里出错了?
该String.prototype.repeat()
方法已被使用。它有一个count
参数,指示重复字符串的次数。它必须在0到小于正数之间Infinity
,不能是负数。允许值的范围可以这样描述:[0,+∞)。
示例
无效的情况
'abc'.repeat(-1 // RangeError
有效的情况
'abc'.repeat(0 // ''
'abc'.repeat(1 // 'abc'
'abc'.repeat(2 // 'abcabc'
'abc'.repeat(3.5 // 'abcabcabc' (count will be converted to integer)