Repeats (merges) a string value multiple times
Repeat("text ", 3) → "text text text" Repeat("Meow ", 2) → "Meow Meow "
Repeat(string, count)
string - A text value to repeat
string
count - Number of times to repeat
count
Last updated 2 years ago