Skip to content
FLAVIO COPES
flaviocopes.com
2026

The String repeat() method

By Flavio Copes

Learn how the JavaScript repeat() method returns a new string repeated a given number of times, returning an empty string for 0 and a RangeError for negatives.

~~~

Introduced in ES2015, repeats the strings for the specificed number of times:

'Ho'.repeat(3) //'HoHoHo'

Returns an empty string if there is no parameter, or the parameter is 0. If the parameter is negative you’ll get a RangeError.

~~~

Related posts about js: