Repeat
Repeats (merges) a string value multiple times
Repeat("text ", 3) → "text text text"
Repeat("Meow ", 2) → "Meow Meow "Inputs
Repeat(string, count)
string- A text value to repeatcount- Number of times to repeat
Last updated
Was this helpful?