2796. Repeat String ¶ TypeScript 1 2 3 4 5 6 7 8 9declare global { interface String { replicate(times: number): string; } } String.prototype.replicate = function (times): string { return Array(times).fill(this).join(''); }; Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.