String.repeat

Static string extension that allows creating a repeated string.

javascript
javascript
var zeros = String.repeat("0",100);
String.repeat(chr,count)

Repeated string

Parameters

chr
The character or string to repeat

count
The number of times to repeat the string

See also

Class String

© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic